Closed fge closed 9 years ago
When you use .setUmask() on the Linux memory fs builder, it sets the mask applied to all file creations as in:
mode | umask
But this is not the meaning of an umask! u is for Undo, it is the set of permissions to be removed from each mode:
mode & ~umask
Thank you soo much!
When do you plan to release a new version with this included?
I just pushed it to Maven Central. I don't know how fast the sync works, but it may take several hours until it's visible.
When you use .setUmask() on the Linux memory fs builder, it sets the mask applied to all file creations as in:
But this is not the meaning of an umask! u is for Undo, it is the set of permissions to be removed from each mode: