You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to cryptomator/cryptofs#77, we need to pass through "file name too long" errors thrown by the underlying file system.
Example thrown by underlying ecryptfs on Linux:
java.nio.file.FileSystemException: path/of/long/file.txt: File name too long
at java.base/sun.nio.fs.UnixException.translateToIOException(UnixException.java:100)
at java.base/sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:111)
Besides operations creating nodes (such as mkdir or symlink) we noticed that error code ENAMETOOLONG is also expected to be returned by getattr.
The text was updated successfully, but these errors were encountered:
Due to cryptomator/cryptofs#77, we need to pass through "file name too long" errors thrown by the underlying file system.
Example thrown by underlying ecryptfs on Linux:
Besides operations creating nodes (such as
mkdir
orsymlink
) we noticed that error code ENAMETOOLONG is also expected to be returned bygetattr
.The text was updated successfully, but these errors were encountered: