Java删除文件夹及其所有内容

  1. package csdn;
  2. import java.io.File;
  3. public class DeleteFile{
  4.     public static void main(String args[])
  5.     {
  6.         Test t = new Test();
  7.         delFolder("c:/bb");
  8.         System.out.println("deleted");
  9.     }
  10.     // 删除文件夹
  11.     // param folderPath 文件夹完整绝对路径
  12.     public static void delFolder(String folderPath)
  13.     {
  14.         try
  15.         {
  16.             delAllFile(folderPath); // 删除完里面所有内容
  17.             String filePath = folderPath;
  18.             filePath = filePath.toString();
  19.             java.io.File myFilePath = new java.io.File(filePath);
  20.             myFilePath.delete(); // 删除空文件夹
  21.         }
  22.         catch (Exception e)
  23.         {
  24.             e.printStackTrace();
  25.         }
  26.     }
  27.     // 删除指定文件夹下所有文件
  28.     // param path 文件夹完整绝对路径
  29.     public static boolean delAllFile(String path)
  30.     {
  31.         boolean flag = false;
  32.         File file = new File(path);
  33.         if (!file.exists())
  34.         {
  35.             return flag;
  36.         }
  37.         if (!file.isDirectory())
  38.         {
  39.             return flag;
  40.         }
  41.         String[] tempList = file.list();
  42.         File temp = null;
  43.         for (int i = 0; i < tempList.length; i++)
  44.         {
  45.             if (path.endsWith(File.separator))
  46.             {
  47.                 temp = new File(path + tempList[i]);
  48.             }
  49.             else
  50.             {
  51.                 temp = new File(path + File.separator + tempList[i]);
  52.             }
  53.             if (temp.isFile())
  54.             {
  55.                 temp.delete();
  56.             }
  57.             if (temp.isDirectory())
  58.             {
  59.                 delAllFile(path + "/" + tempList[i]);// 先删除文件夹里面的文件
  60.                 delFolder(path + "/" + tempList[i]);// 再删除空文件夹
  61.                 flag = true;
  62.             }
  63.         }
  64.         return flag;
  65.     }
  66. }
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值