class test{
private static final String user_path = "D:\\a_user1\\";
private static String GetUserName() {
File[] list = new File(user_path + "username").listFiles();
if (list != null && list.length >= 1) {
return list[0].getName();
}
return null;
}
private static void SetUserName(String UserName) {
File[] list = new File(user_path + "username/").listFiles();
if (list != null && list.length >= 1)
for (File temp : list) {
temp.delete();
}
new File(user_path + "username/" + UserName).mkdirs();
}
public static void main(String[] args) {
System.out.println(GetUserName());
SetUserName("卢四六");
}
}
1
caryqy 2021-02-18 11:21:36 +08:00
云提问一下,如果我只有一个 c 盘,user_path 这个还正常不
|
3
gaoshiba OP 担心哪个杀毒软件把空文件清除,haha
数据全部存在文件夹名称里 data -- user -- username -- sex ... |
4
Sasasu 2021-02-18 13:56:56 +08:00
估计以前这个存储后段是 ad 或者 zk 那种文件夹 kv
后来用最简单的方式改成本地存储 |