Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8316000: File.setExecutable silently fails if file does not exist #15673

Closed
wants to merge 8 commits into from
42 changes: 19 additions & 23 deletions src/java.base/share/classes/java/io/File.java
Original file line number Diff line number Diff line change
@@ -1621,8 +1621,7 @@ public boolean setWritable(boolean writable) {
* file attributes including file permissions. This may be used when finer
* manipulation of file permissions is required.
*
* @apiNote
* On platforms which do not support setting whether a file is readable,
* <p> On platforms which do not support setting a file's read permission,
* this method does nothing and returns the value of the {@code readable}
* parameter.
*
@@ -1640,9 +1639,9 @@ public boolean setWritable(boolean writable) {
* @return {@code true} if and only if the operation succeeded. The
* operation will fail if the user does not have permission to
* change the access permissions of this abstract pathname. If
* {@code readable} is {@code false} and the underlying
* file system does not implement a read permission, then the
* operation will fail.
* the underlying file system does not implement a read permission,
* then the operation will return the value of the {@code readable}
* parameter.
*
* @throws SecurityException
* If a security manager exists and its {@link
@@ -1676,8 +1675,7 @@ public boolean setReadable(boolean readable, boolean ownerOnly) {
* file.setReadable(arg, true)
* }
*
* @apiNote
* On platforms which do not support setting whether a file is readable,
* <p> On platforms which do not support setting a file's read permission,
* this method does nothing and returns the value of the {@code readable}
* parameter.
*
@@ -1688,9 +1686,9 @@ public boolean setReadable(boolean readable, boolean ownerOnly) {
* @return {@code true} if and only if the operation succeeded. The
* operation will fail if the user does not have permission to
* change the access permissions of this abstract pathname. If
* {@code readable} is {@code false} and the underlying
* file system does not implement a read permission, then the
* operation will fail.
* the underlying file system does not implement a read permission,
* then the operation will return the value of the {@code readable}
* parameter.
*
* @throws SecurityException
* If a security manager exists and its {@link
@@ -1713,8 +1711,7 @@ public boolean setReadable(boolean readable) {
* file attributes including file permissions. This may be used when finer
* manipulation of file permissions is required.
*
* @apiNote
* On platforms which do not support setting whether a file is executable,
* <p> On platforms which do not support setting a file's execute permission,
* this method does nothing and returns the value of the {@code executable}
* parameter.
*
@@ -1732,9 +1729,9 @@ public boolean setReadable(boolean readable) {
* @return {@code true} if and only if the operation succeeded. The
* operation will fail if the user does not have permission to
* change the access permissions of this abstract pathname. If
* {@code executable} is {@code false} and the underlying
* file system does not implement an execute permission, then the
* operation will fail.
* the underlying file system does not implement an execute
* permission, then the operation will return the value of
* the {@code executable} parameter.
*
* @throws SecurityException
* If a security manager exists and its {@link
@@ -1768,21 +1765,20 @@ public boolean setExecutable(boolean executable, boolean ownerOnly) {
* file.setExecutable(arg, true)
* }
*
* @apiNote
* On platforms which do not support setting whether a file is executable,
* <p> On platforms which do not support setting a file's execute permission,
* this method does nothing and returns the value of the {@code executable}
* parameter.
*
* @param executable
* If {@code true}, sets the access permission to allow execute
* operations; if {@code false} to disallow execute operations
*
* @return {@code true} if and only if the operation succeeded. The
* operation will fail if the user does not have permission to
* change the access permissions of this abstract pathname. If
* {@code executable} is {@code false} and the underlying
* file system does not implement an execute permission, then the
* operation will fail.
* @return {@code true} if and only if the operation succeeded. The
* operation will fail if the user does not have permission to
* change the access permissions of this abstract pathname. If
* the underlying file system does not implement an execute
* permission, then the operation will return the value of the
* {@code executable} parameter.
*
* @throws SecurityException
* If a security manager exists and its {@link