码迷,mamicode.com
首页 > 其他好文 > 详细

IO流(3)删除文件或文件夹

时间:2018-01-08 21:41:03      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:class   sys   log   stat   void   dir   creat   项目   blog   

删除功能:public boolean delete()
*
* 注意:
* A:如果你创建文件或者文件夹忘了写盘符路径,那么,默认在项目路径下。
* B:Java中的删除不走回收站。
* C:要删除一个文件夹,请注意该文件夹内不能包含文件或者文件夹
*/
public class FileDemo {
  public static void main(String[] args) throws IOException {
    // 创建文件
    // File file = new File("e:\\a.txt");
    // System.out.println("createNewFile:" + file.createNewFile());

    // 我不小心写成这个样子了
    File file = new File("a.txt");
    System.out.println("createNewFile:" + file.createNewFile());

    // 继续玩几个
    File file2 = new File("aaa\\bbb\\ccc");
    System.out.println("mkdirs:" + file2.mkdirs());

    // 删除功能:我要删除a.txt这个文件
    File file3 = new File("a.txt");
    System.out.println("delete:" + file3.delete());

    // 删除功能:我要删除ccc这个文件夹
    File file4 = new File("aaa\\bbb\\ccc");
    System.out.println("delete:" + file4.delete());

    // 删除功能:我要删除aaa文件夹
    // File file5 = new File("aaa");
    // System.out.println("delete:" + file5.delete());

    File file6 = new File("aaa\\bbb");
    File file7 = new File("aaa");
    System.out.println("delete:" + file6.delete());
    System.out.println("delete:" + file7.delete());
  }
}

IO流(3)删除文件或文件夹

标签:class   sys   log   stat   void   dir   creat   项目   blog   

原文地址:https://www.cnblogs.com/qinjf/p/8244963.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!