:: +-----------------------------------------------+ ::
:: | BAT-GO团员【wkdxz】 At:2010-07-22 17:09:39 | ::
:: +-----------------------------------------------+ ::
if exist D:\gho\ (echo y|cacls D:\gho /p everyone:f >nul 2>nul &&rd /s /q D:\gho) else echo D:\gho文件夹不存在
pause
::不用去除属性也能删除,窗口没关掉是因为正在删除中,删除后BAT会自动退出的
//如果文件存在于文件夹中,则删除该文件//dirPath 文件夹路径,fileName 文件名
public static void existsDelete(String dirPath,String fileName) {
File pathFile = new File(dirPath)
if(!pathFile.exists() || pathFile.isFile()) {
return
}
for(File file:pathFile.listFiles()) {
if(file.isFile() &&fileName.equals(file.getName())) {
file.delete()
break
}
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)