1 Star 0 Fork 0

曹增令/lenosp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
CreateKeep.java 1.61 KB
一键复制 编辑 原始数据 按行查看 历史
曹增令 提交于 2018-06-09 17:33 . no commit message
import java.io.File;
import java.io.IOException;
public class CreateKeep {
public static final String packageFile = ".keep";
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;
if (fsLength == 0) {
createFile(dir.getAbsolutePath());
} else {
for (int i = 0; i < fsLength; i++) {
if (fs[i].isDirectory()) {
try {
traversalAllFolder(fs[i]);
} catch (Exception e) {
}
}
}
}
}
/**
* 创建.keep文件
*
* @param folderPath
* 路径名
*/
public static void createFile(String folderPath) {
String fileName = folderPath + "/" + packageFile;
File file = new File(fileName);
try {
file.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}
}
/**
* 获取当前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;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/caozengling/lenosp.git
[email protected]:caozengling/lenosp.git
caozengling
lenosp
lenosp
master

搜索帮助