mirror of
https://github.com/sigoden/dufs.git
synced 2026-04-08 16:49:02 +03:00
[GH-ISSUE #90] create/delete folder #37
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @leolulu on GitHub (Jul 4, 2022).
Original GitHub issue: https://github.com/sigoden/dufs/issues/90
Hi sigoden, thanks for your development, this tool helps me a lot. Just love it.
Sometimes, when I upload new files and want to classify them from previous ones, I will create a folder and put them is there.
Since dufs does not support creating new folder on web UI, I have to go to the terminal and run mkdir command.
So if create/delete folder is supported on web UI, it will be very helpful.
Hope to hear your opinion.
Thanks in advance.
@sigoden commented on GitHub (Jul 4, 2022):
Dufs already support create/delete folders.
First you have to allow upload/delete operations with
--allow-upload/--allow-deleteor--allow-all/-A.You can see delete icons in actions column, click them to delete folders/files.
Creating folders is not so obvious but dufs also supports. If you want create a folder named
dir1, just gotohttp://localhost:5000/dir1and upload some files.@sigoden commented on GitHub (Jul 4, 2022):
drag & drop a folder also works.
@leolulu commented on GitHub (Jul 5, 2022):
got it, thanks.
@leolulu commented on GitHub (Jul 5, 2022):
@sigoden
Tested, here are some feedbacks:
Anyway, drag&drop nonempty folder works.🤝
@sigoden commented on GitHub (Jul 5, 2022):
drag & drop only works on files, Nothing happend on empty folder is expected.
url need
/at end to indicate a folder other than a file, check<origin>/dir2/@leolulu commented on GitHub (Jul 5, 2022):
cool, it works.