提交 cb3c24e6 编写于 作者: NoSubject's avatar NoSubject

Merge branch 'fix/wrdp_configedit1020' into 'wrdp'

修改在线配置bug

See merge request o2oa/o2oa!1858
......@@ -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.
先完成此消息的编辑!
想要评论请 注册