GDriveFS
GDriveFS copied to clipboard
Move operation doesn't work/update cache
Reproduce steps
- Mount gdfs in
/gdfs - Create a directory
/gdfs/foo - (optional) Create a file in the new directory (
echo 1 > /gdfs/bar/file.txt) - Create second directory
/gdfs/bar - Move
/gdfs/foointo/gdfs/bar:mv /gdfs/foo /gdfs/bar/
Expected
Directory is moved and visible at new path: /gdfs/bar/foo
Actual
- The directory doesn't exist at target path:
$ ls /gdfs/bar/foo
ls: cannot access '/gdfs/bar/foo': No such file or directory
- The directory is still visible in the original path.
$ ls /gdfs/foo
file.txt