当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
1 Star 0 Fork 4

达云科技/createKeep
暂停

forked from 隔壁老吴/createKeep
暂停
 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
deleteKeep.java 1.57 KB
一键复制 编辑 原始数据 按行查看 历史
隔壁老吴 提交于 2017-03-24 19:14 . no commit message
import java.io.File;
public class deleteKeep {
public static void main(String[] args) {
String path = getRealPath();
File file = new File(path);
try {
traversalAllFolder(file);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 遍历当前文件夹下的所有文件夹,对空的文件夹创建.keep文件
*
* @param dir
* @throws Exception
*/
final static void traversalAllFolder(File dir) throws Exception {
File[] fs = dir.listFiles();
int fsLength = fs.length;
for (int i = 0; i < fsLength; i++) {
String filename = getFilename(fs[i].getPath());
if (filename.equals(".keep")) {
fs[i].delete();
}
if (fs[i].isDirectory()) {
try {
traversalAllFolder(fs[i]);
} catch (Exception e) {
}
}
}
}
/**
* 获取当前jar包所在路径
*
* @return
*/
public static String getRealPath() {
String realPath = CreateKeep.class.getClassLoader().getResource("")
.getFile();
java.io.File file = new java.io.File(realPath);
realPath = file.getAbsolutePath();
try {
realPath = java.net.URLDecoder.decode(realPath, "utf-8");
} catch (Exception e) {
e.printStackTrace();
}
return realPath;
}
/**
* 获取文件名
*
* @param
* @return
*/
public static String getFilename(String filepath) {
if ((filepath != null) && (filepath.length() > 0)) {
int dot = filepath.lastIndexOf('\\');
if ((dot > -1) && (dot < (filepath.length() - 1))) {
return filepath.substring(dot + 1);
}
}
return "";
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/xiaobodev/createKeep.git
[email protected]:xiaobodev/createKeep.git
xiaobodev
createKeep
createKeep
master

搜索帮助