fuse-zip does not allow folder move

Issue #69 invalid
Former user created an issue

To emulate a normal file system, fuse-zip should allow renaming, mv, of directories from one internal path to another without extracting and re-inserting all files. Of course, windows does not do this yet, but why not lead?

Comments (2)

  1. Alexander Galanin repo owner

    Let me clarify your proposal: are you talking about renaming a directory inside one mounted file system/archive or between two different mounted file systems/archives?

    The first option has already been implemented.

    The second are impossible because of Linux kernel limitation: rename(2) can be used only if source and destination file name are on the same file system (see description of EXDEV error code).

  2. Log in to comment