-
Bug
-
Resolution: Fixed
-
P3
-
1.1
-
b01
-
x86
-
windows_95
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2014712 | 1.2.0 | Michael Mccloskey | P3 | Resolved | Fixed | 1.2beta4 |
Name: akC57697 Date: 04/02/97
The java.io.File delete() does not work properly with non-canonical
pathnames.The method should convert given pathname to canonical one,
then delete.
______________________ TestDelNeg.java _________________________________
import java.awt.*;
import java.io.*;
public class TestDelNeg {
public static void main(String[] args){
try {
File f1=new File("\\c:\\DelDir");
System.out.println("Create:"+f1.mkdir());
System.out.println("Does it exist as directory ? :"+f1.exists()+" "+f1.isDirectory());
System.out.println("Delete:"+f1.delete());
} catch (Exception e) {System.out.println("Unexpected "+e);}
}
}
______________________ Output ________________________________________
Create:true
Does it exist as directory ? :true true
Delete:false
______________________________________________________________________
======================================================================
- backported by
-
JDK-2014712 java.io.File delete should work with non-canonical pathnames
-
- Resolved
-
- relates to
-
JDK-4042592 java.io.File.renameTo should work with non-canonical pathnames
-
- Closed
-