cryptomator / cryptofs

Java Filesystem Provider with integrated encryption
GNU Affero General Public License v3.0
94 stars 35 forks source link

Support for LinkOption.NOFOLLOW_LINKS #39

Closed overheadhunter closed 5 years ago

overheadhunter commented 5 years ago

Once we support symbolic links (depends on #38), we need to make sure to respect link-specifc options:

FileVisitOption.FOLLOW_LINKS is only used by Files.walkFileTree, which will translate to the corresponding options used for the FileSystemProvider.

LinkOption.NOFOLLOW_LINKS on the other hand is used in various calls to the FileSystemProvider such as Files.copy and Files.getFileAttributeView.

TODO: