I'm using java.io.File methods: setReadable, setWritable, setExecutable to set file permissions. However, in spite of using these methods the permissions are always set to the default settings. Why is that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
These methods are not always supported by the underlying filesystem. E.g. it's not possible to make a point unreadable in NTFS on Windows XP. There's more information here: java.sun.com, under "Setting File and Directory Permissions" |
|||
|