提交 03eb80ba 编写于 作者: hlwwx's avatar hlwwx

'modifyConfig'

上级 1caa1662
......@@ -55,7 +55,12 @@ public class ActionSave extends BaseAction {
return result;
}
File file = new File(Config.base(),Config.dir_config()+"/"+fileName);
File configFold = new File(Config.base(),Config.DIR_CONFIG);
if(!configFold.exists()){
configFold.mkdir();
}
File file = new File(Config.base(),Config.DIR_CONFIG+"/"+fileName);
if(!file.exists()) {
file.createNewFile();
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册