-
Bug
-
Resolution: Unresolved
-
P4
-
9, 10
-
x86_64
-
windows_7
FULL PRODUCT VERSION :
java version "9.0.1"
Java(TM) SE Runtime Environment (build 9.0.1+11)
Java HotSpot(TM) 64-Bit Server VM (build 9.0.1+11, mixed mode)
A DESCRIPTION OF THE PROBLEM :
If the file being deleted does not exist, java.awt.Desktop.moveToTrash(File) throws IllegalArgumentException. This is not sensible. Even if the code tests for file existence before the call, the file could be deleted externally between that test and the test in moveToTrash(). Thus, for reliable code any call to moveToTrash must be in a try/catch with IllegalArgumentException caught.
If the file does not exist, either no exception should be thrown or a checked exception should be thrown. Since the API is already public, it may make the most sense to just not throw the exception and silently ignore the non-existent file.
REPRODUCIBILITY :
This bug can be reproduced always.
CUSTOMER SUBMITTED WORKAROUND :
Use try/catch and catch IllegalArgumentException for any call to Desktop.moveToTrash()
java version "9.0.1"
Java(TM) SE Runtime Environment (build 9.0.1+11)
Java HotSpot(TM) 64-Bit Server VM (build 9.0.1+11, mixed mode)
A DESCRIPTION OF THE PROBLEM :
If the file being deleted does not exist, java.awt.Desktop.moveToTrash(File) throws IllegalArgumentException. This is not sensible. Even if the code tests for file existence before the call, the file could be deleted externally between that test and the test in moveToTrash(). Thus, for reliable code any call to moveToTrash must be in a try/catch with IllegalArgumentException caught.
If the file does not exist, either no exception should be thrown or a checked exception should be thrown. Since the API is already public, it may make the most sense to just not throw the exception and silently ignore the non-existent file.
REPRODUCIBILITY :
This bug can be reproduced always.
CUSTOMER SUBMITTED WORKAROUND :
Use try/catch and catch IllegalArgumentException for any call to Desktop.moveToTrash()