You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Path_Manipulate.java 369 B

3 years ago
1234567891011121314151617181920212223
  1. package Path_Manipulate;
  2. import java.io.File;
  3. public class Path_Manipulate {
  4. public void bad(){
  5. String path = System.getProperty("dir");
  6. File f = new File(path); // bad 路径遍历
  7. f.delete();
  8. }
  9. public void good(){
  10. String path = "C:" + File.separator + "test.txt";
  11. File f = new File(path); // good 路径遍历
  12. f.delete();
  13. }
  14. }

No Description

Contributors (1)