diff options
-rw-r--r-- | FuseArchive/FileSystem.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/FuseArchive/FileSystem.py b/FuseArchive/FileSystem.py index 64eae86..f58b541 100644 --- a/FuseArchive/FileSystem.py +++ b/FuseArchive/FileSystem.py @@ -126,6 +126,10 @@ class FileSystem(fuse.Fuse): # None as the first argument which will fix the typeerrors above, but # you'll need to remember to do it again later if you upgrade the package. # +# Realistically if you use symlinks that point outside the tree you are +# also going to get super bizarre results, you will be happier using rsync +# backups if you use --safe-links +# ####### # The following utimens method would do the same as the above utime method. # We can't make it better though as the Python stdlib doesn't know of |