svn dump 因 WScript.Shell 失败
var WshShell = new ActiveXObject("WScript.Shell");
var commandLine = "svnadmin dump " + repoFullPath + " > " + repoName + ".dumpfile";
WshShell.Exec(commandLine)
我试图在 Windows 中运行上面的 cscript,但看起来它什么也没做。 它不会创建转储文件。
我做错了什么吗?
var WshShell = new ActiveXObject("WScript.Shell");
var commandLine = "svnadmin dump " + repoFullPath + " > " + repoName + ".dumpfile";
WshShell.Exec(commandLine)
I am trying to run above cscript in Windows but it seems like, it's doing nothing. It doesn't create the dump file.
Any mistake that I am doing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您尚未为 repoFullPath 或 repoName 分配值。 在 Exec 行之前放置,
以便您可以看到脚本尝试运行的内容。
You have not assigned values to repoFullPath or repoName. Before the Exec line, put
so that you can see what the script is trying to run.
使用 cmd 为您的命令创建一个新的命令解释器,并在完成后使用 /C 标志终止它。
例如:
Create a new command interpreter for your command using cmd, and have it terminate when done using the /C flag.
For example: