- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Rust 的 std:process:Command
在 Windows 中调用 robocopy
。不幸的是,似乎在执行 robocopy
的某个地方,.exe 的相对路径被插入到每个目录之前。
此外,像 net use
这样的简单调用使用相同的方法,尽管我只测试了不依赖于任何目录的调用。
编辑:更新了测试文件夹,使其名称中包含空格。
编辑 2:代码已用解决方案更新。解决方案是直接调用 robocopy 并在所有内容中单独调用 .arg()
。旧的尝试仍在评论中。
而不是发送
cmd.exe /c robocopy "C:\Test\Test 1" "C:\Test\Test 2" /MIR /copy:DAT /MT:32 /Z /R:2 /W:03 /v /LOG:"C:\Test\Test 3\logfile.log"
运行成功,输出有很多错误:
ERROR 123 (0x0000007B) Opening Log File C:\relative\path\where\exe\is\located\"C:\Test\Test 3\logfile.log"
The filename, directory name, or volume label syntax is incorrect.
-------------------------------------------------------------------------------
ROBOCOPY :: Robust File Copy for Windows
-------------------------------------------------------------------------------
Started : Tuesday, January 8, 2019 7:35:41 AM
Source - C:\relative\path\where\exe\is\located\"C:\Test\Test 1"\
Dest - C:\relative\path\where\exe\is\located\"C:\Test\Test 2"\
Files :
Options : /V /S /E /DCOPY:DA /COPY:DAT /PURGE /MIR /Z /MT:32 /R:2 /W:3
------------------------------------------------------------------------------
ERROR : Invalid Parameter #10 : "/LOG:"C:\Test\Test 3\logfile.log""
此问题发生在使用:
Rust 版本 1.3.1
Windows 10
导致此问题的代码如下所示。要使用它,您需要在 C:\ 中放置一个 Test 文件夹(或将其更改为任意位置),并在该目录中放置一个 Test 1 文件夹,其中包含一些 Testfile.txt 以帮助显示复制的发生,以及用于日志的 Test 3 文件夹(不确定日志是否可以制作自己的文件夹 - 所以为了安全起见,为它预先制作一个!)。基本上你想要:
C:\Test\Test 1\Testfile.txt (name or type of file doesn't matter)
C:\Test\Test 3\
robocopy
应该运行并创建一个 C:\Test\Test 2 文件夹,其中包含 Testfile.txt 并放置一个 C:\Test\Test 3 中的 logfile.log 详细说明了事务。最后,目录应如下所示:
C:\Test\Test 1\Testfile.txt
C:\Test\Test 2\Testfile.txt
C:\Test\Test 3\logfile.log
代码如下:
//-----Import Built-in Libraries (not called crates)-----
use std::process::Command; //use cmd.exe
fn main()
{
let commandOpt1 = "/MIR"; //mirror directories
let commandOpt2 = "/copy:DAT"; //copy attributes
let commandOpt3 = "/MT:32"; //use 32 I/O threads (low CPU still, but better bandwidth utilization)
let commandOpt4 = "/Z"; //idr
let commandOpt5 = "/R:2"; //Retry twice
let commandOpt6 = "/W:03"; //Wait 3 sec between tries
let commandOpt7 = "/v"; //verbose logging
let commandLogStr = "/LOG:\"C:\\Test\\Test 3\\logfile.log\""; //record where the log file goes
let commandLogNoParenthStr = "/LOG:C:\\Test\\Test 3\\logfile.log"; //record where the log file goes
let command = format!("robocopy \"C:\\Test\\Test 1\" \"C:\\Test\\Test 2\" {} {} {} {} {} {} {} {}",
commandOpt1,commandOpt2,commandOpt3,commandOpt4,commandOpt5,commandOpt6,
commandOpt7,commandLogStr); //build the command
let commandStr: &str = &*command; //these two types of strings are
println!("TEST-Command for robocopy:{}",command);
//let m = Command::new("cmd.exe").arg("/c").arg(commandStr).output().unwrap(); //run cmd.exe net use
/*let m = Command::new("cmd.exe")
.arg("/c")
.arg("robocopy")
.arg("\"C:\\Test\\Test 1\"")
.arg("\"C:\\Test\\Test 2\"")
.arg(commandOpt1)
.arg(commandOpt2)
.arg(commandOpt3)
.arg(commandOpt4)
.arg(commandOpt5)
.arg(commandOpt6)
.arg(commandOpt7)
.arg(commandLogStr)
.output().unwrap(); //run cmd.exe net use */
let m = Command::new("robocopy")
.arg("C:\\Test\\Test 1")
.arg("C:\\Test\\Test 2")
.arg(commandOpt1)
.arg(commandOpt2)
.arg(commandOpt3)
.arg(commandOpt4)
.arg(commandOpt5)
.arg(commandOpt6)
.arg(commandOpt7)
.arg(commandLogNoParenthStr )
.output().unwrap(); //run cmd.exe net use */
let mOutput = String::from_utf8_lossy(&m.stdout); //get the output
println!("TEST-cmd output: {}",mOutput);
println!("TEST-cmd status: {}", m.status.success()); //reports success (true or false) of command
println!("TEST-cmd stderr: {}", String::from_utf8_lossy(&m.stderr)); //reports error words of command
let _ = Command::new("cmd.exe").arg("/c").arg("pause").status(); // wait for user input
}
该代码提供了两种选择,一种是在一个 .arg()
添加中调用 robocopy
,另一种是使用 .arg()
分开。对我来说,它们给出了相同的结果 - 但选项很好!
此外,请注意,我将所有内容作为 &str
发送到 Command
中,但这似乎不是必需的 - Strings
可以是 .arg()
也是。
最佳答案
我附近没有 Windows 机器,但我很确定问题出在引号字符 "
中。
CMD.exe 中的转义规则很奇怪:有时需要引号,有时不需要,有时不能使用它们。
在您的情况下,例如使用以下选项选择日志文件(删除 Rust 转义):/LOG:"C:\Test\Test3\logfile.log"
。这是一个以引号开头和结尾的文件名。由于它不是以驱动器号或 \
开头,操作系统认为:肯定是相对路径,让我们寻找 C:\...\"C:\Test ...”
!
解决方案很简单:只需删除所有这些引用即可。
我不明白的是你为什么调用 cmd.exe/c
而不是直接调用 robocopy
。命令行中的引号用于引导命令行解析器并正确管理带空格的文件名等。但是,如果您直接执行 robocopy
的 Command::new()
,则不需要引用,因为参数已经单独传递。
关于windows - 如何防止 Rust std::process:Command 将 .exe 相对路径插入参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54155214/
我正在努力处理不同的 R 可执行文件。在批处理文件中运行命令行时,R.exe(带或不带 CMD BATCH 选项)、Rcmd.exe、Rscript.exe 和 Rterm.exe 有什么区别? 两者
这个问题是我之前问题的一个答案的扩展:how to save user registration in the exe... (C#) . 这个想法本身对我来说仍然很新,但它似乎是合理的。我第一次尝试
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 12 年前。 Improve thi
我正在使用 React VR 制作一个 WebVR 应用程序。我将使用 Oculus Rift 和 HTC-Vive 测试该应用程序。我正在使用浏览器 Firefox Nightly 来访问 WebV
当我从 A.exe(位于 c:/my_software/FOLDER_A/A.exe)运行 B.exe(位于 c:/my_software/FOLDER_B/B.exe)时,两者均使用 cx_Free
我有一个以前的程序员留下的exe(GUI),它是在cpp中完成的,但是我需要禁用程序中的一些键盘键,因为当它们被意外击中时,这是不可取的。我正在使用 Windows。 我能否编写一个程序来在 Wind
这不是以下 SO 问题的重复: How do I tell if a win32 application uses the .NET runtime . 如果给定的 exe 文件是 .net exe
我刚刚安装了 ActivePython 3.6 的 64 位版本,发现它包含三个可执行文件,它们报告相同的版本信息,大小相同,但不完全相同,即peer fc.exe。我有 python.exe pyt
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 9
有哪些方法可以保护exe文件免遭逆向工程。有很多打包工具可以打包exe文件。这种方法在http://c-madeeasy.blogspot.com/2011/07/protecting-your-c-
仅当应用“X”(Inspect.exe | Narrator.exe | Magnify.exe)正在运行时,我才能在 Windows 应用程序中获取一些 IUIAutomationElements。
我正在编写一个创建 Windows 服务的程序。所以我需要两个 .exe 文件——一个用于程序,创建服务,另一个用于服务本身。但是我想将这两个文件合二为一。我有以下想法 - 打开 .exe 文件,我想
我有一个 UWP 应用,我需要从 users %appdata% 文件夹中启动一个 .Exe 文件。 我不知道如何找到 %appdata% 或如何启动 Exe 文件。 我已经查看了所有解决方案,但没有
我最近安装了 Visual Studio 2017,MSBuild.exe 不是应该自带的吗? bash 脚本之一正在调用它,但找不到任何东西。 这是 build.bat 产生错误的部分(您可以看到整
我正在我自己的代码中尝试来自 Mad-collections(用于在 exe 中添加/删除或更新资源的单元)中 Madres 单元的不同功能。这适用于小型资源(小于 50 MB),但对于较大的资源(大
什么是PreEmptive Protection Dotfuscator exe文件的Map.Xml和Dotfuscator1.Xml文件。我应该出于某种原因保留它们,还是项目 exe 文件组装需要它
我最近接手了一个项目,我不确定最后一个人是如何调试这个的......我有两个可执行文件,一个最终运行另一个。我将它们称为 exe1 和 exe2。这些是用 C# 创建的,我使用 Visual Stud
如何从 REBOL 脚本创建 Windows 可执行文件 (.exe)?有任何说明或视频吗? 最佳答案 使用 Rebol 2 最简单的方法是使用 SDK - 尽管这需要花钱购买许可证。该方法称为封装。
我正在尝试打开下载的 .exe 文件,但它在打开后立即关闭。有什么可能的方法可以让我打开它更长的时间来阅读内容。 最佳答案 它可能是一个控制台应用程序而不是一个 GUI 应用程序。使用命令提示符运行
我想运行一个位于以下目录中的应用程序: C:\LCR 12\stu.exe 使用 AutoIt,运行上述 stu.exe 文件的代码是什么? 最佳答案 像这样: Run("C:\LCR 12\stu.
我是一名优秀的程序员,十分优秀!