标签:get let pat 删除 ntp 路径 ring file 验证
file1=new File(path);//path 为文件地址绝对路径
//File ff = new File(file.getAbsolutePath());相对路径获取方法
//String copyPath = ff.getParentFile().getParent();
String parentPath=file1.getParent();parentPath为path的父级目录地址
String[] arr=null;//用来验证文件是否为空文件
File parentFile=new File(parentPath);
if(parentFile.isDirectory()){
arr= parentFile.list();
}
if(arr.length==0){
parentFile.delete();//删除文件
}
标签:get let pat 删除 ntp 路径 ring file 验证
原文地址:https://www.cnblogs.com/yy-hang/p/14962116.html