博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
windows文件夹嵌套太多,导致无法删除的解决方法
阅读量:5316 次
发布时间:2019-06-14

本文共 1936 字,大约阅读时间需要 6 分钟。

import java.io.File;public class DeleteUtils{    public static void main(String[] args)    {        File dir = new File("D:\\code\\NCE\\Spliter_NCE");        renameDirRecursively(dir);        System.out.println("renameDirRecursively success");        deleteRecursively(dir);        System.out.println("deleteRecursively success");    }    private static void renameDirRecursively(File dir)    {        File[] listFiles = dir.listFiles();        if (listFiles != null)        {            int subIndex = 0;            for (File file : listFiles)            {                boolean isDir = file.isDirectory();                StringBuilder afterName = new StringBuilder();                subIndex = renameFile(file, subIndex, afterName);                if (isDir)                {                    renameDirRecursively(new File(afterName.toString()));                }            }        }    }    private static int renameFile(File file, int index, StringBuilder afterName)    {        String newName = file.getParent() + File.separator + index;        if (afterName != null)        {            afterName.append(newName);        }        if (newName.equals(file.getAbsolutePath()))        {            return index + 1;        }        boolean success = file.renameTo(new File(newName));        if (success)        {            return index + 1;        }        else        {            return renameFile(file, index + 1, afterName);        }    }    private static void deleteRecursively(File file)    {        if (file.isDirectory())        {            File[] listFiles = file.listFiles();            if (listFiles != null)            {                for (File subFile : listFiles)                {                    deleteRecursively(subFile);                }            }            file.delete();        }        else        {            file.delete();        }    }}

  

转载于:https://www.cnblogs.com/jeremyyjy/p/10314668.html

你可能感兴趣的文章
xml.exist() 实例演示
查看>>
判断是否为空然后赋值
查看>>
zabbix监控日志文件
查看>>
正则表达式
查看>>
pip install torch on windows, and the 'from torch._C import * ImportError: DLL load failed:' s...
查看>>
java基础(一):我对java的三个环境变量的简单理解和配置
查看>>
arcgis api 4.x for js 结合 Echarts4 实现散点图效果(附源码下载)
查看>>
YTU 2625: B 构造函数和析构函数
查看>>
apache自带压力测试工具ab的使用及解析
查看>>
C#使用Xamarin开发可移植移动应用(2.Xamarin.Forms布局,本篇很长,注意)附源码
查看>>
jenkins搭建
查看>>
C#中使用Split分隔字符串的技巧
查看>>
eclipse的调试方法的简单介绍
查看>>
加固linux
查看>>
IPSP问题
查看>>
10.17动手动脑
查看>>
WPF中Image显示本地图片
查看>>
Windows Phone 7你不知道的8件事
查看>>
实用拜占庭容错算法PBFT
查看>>
java的二叉树树一层层输出,Java构造二叉树、树形结构先序遍历、中序遍历、后序遍历...
查看>>