var cp = require('child_process');
cp.execFile(nameOfService,
["--token",
token,
"export",
projectId,
"--type",
"json",
"--bundle_structure",
"%LANG_ISO%.json",
"--unzip_to",
"./projects/" + projectName
], {});
我解压缩了项目内部的两个文件。 我做了一个记录器(它也可以在本地服务器上工作,我可以看到文件中的更改),并且看到该程序正在运行。但是这些文件中的文本在暂存中没有任何变化(我已经在MobaXtrem中下载了它们)。
如何获取文件的新版本?