[GH-ISSUE #89] Support move file #38

Closed
opened 2026-04-08 16:49:59 +03:00 by zhus · 2 comments
Owner

Originally created by @theowenyoung on GitHub (Jul 3, 2022).
Original GitHub issue: https://github.com/sigoden/dufs/issues/89

Specific Demand

I use dufs to manage my auto downloads folder, I need to arrange the files from the default download folder when downloaded, so if there is a move action, allow me moving file from one path to another path.

Implement Suggestion

maybe offer a move action, and allow to choose target folder

Originally created by @theowenyoung on GitHub (Jul 3, 2022). Original GitHub issue: https://github.com/sigoden/dufs/issues/89 ## Specific Demand <!-- What feature do you need, please describe it in detail. --> I use dufs to manage my auto downloads folder, I need to arrange the files from the default download folder when downloaded, so if there is a move action, allow me moving file from one path to another path. ## Implement Suggestion <!-- If you have any suggestion for complete this feature, you can tell us. --> maybe offer a move action, and allow to choose target folder
zhus closed this issue 2026-04-08 16:49:59 +03:00
Author
Owner

@sigoden commented on GitHub (Jul 3, 2022):

dufs supports webdav, webdav supports move operation.

you can try it with webdav client.

If you are familiar with curl, you can try the following to move dir to dir2:

curl -X MOVE -H Destination:http://localhost:5000/dir2 http://localhost:5000/dir

To keep things simple, the web ui does not support move.

<!-- gh-comment-id:1173047820 --> @sigoden commented on GitHub (Jul 3, 2022): dufs supports webdav, webdav supports move operation. you can try it with webdav client. If you are familiar with curl, you can try the following to move dir to dir2: ``` curl -X MOVE -H Destination:http://localhost:5000/dir2 http://localhost:5000/dir ``` To keep things simple, the web ui does not support move.
Author
Owner

@theowenyoung commented on GitHub (Jul 3, 2022):

Thanks! I learned Webdav today.

<!-- gh-comment-id:1173151003 --> @theowenyoung commented on GitHub (Jul 3, 2022): Thanks! I learned Webdav today.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: sigoden/dufs#38