我正在尝试编写使用robocopy的脚本。如果我只是手动执行此操作,我的命令将是:
robocopy c:\ hold \ test1 c:\ hold \ test2 test.txt / NJH / NJS
但是,当我从powershell执行此操作时,例如:
$source = "C:\hold\first test"
$destination = "C:\hold\second test"
$robocopyOptions = " /NJH /NJS "
$fileList = "test.txt"
robocopy $source $destination $fileLIst $robocopyOptions
我明白了:
-------------------------------------------------------------------------------
ROBOCOPY :: Robust File Copy for Windows
-------------------------------------------------------------------------------
Started : Fri Apr 10 09:20:03 2015
Source - C:\hold\first test\
Dest - C:\hold\second test\
Files : test.txt
Options : /COPY:DAT /R:1000000 /W:30
------------------------------------------------------------------------------
ERROR : Invalid Parameter #4 : " /NJH /NJS "
但是,如果我将robocopy命令更改为
robocopy $source $destination $fileLIst /NJH /NJS
一切顺利运行。
所以,我的问题是,如何将一个字符串作为我的robocopy命令选项传递(并且在更广泛的意义上,对任何给定的外部命令执行相同的操作)
答案 0 :(得分:15)
Start robocopy -args "$source $destination $fileLIst $robocopyOptions"
或
robocopy $source $destination $fileLIst $robocopyOptions.split(' ')
答案 1 :(得分:6)
使用数组,Luke。如果指定值数组,PowerShell将自动将它们扩展为单独的参数。根据我的经验,这是最可靠的方法。并且它并不要求你弄乱Start-Process
cmdlet,在我看来这对于这些任务来说是过度的。
这个技巧来自我在PowerShell对外部可执行文件的行为上看到的最好的文章:PowerShell and external commands done right。
示例:
$source = 'C:\hold\first test'
$destination = 'C:\hold\second test'
$robocopyOptions = @('/NJH', '/NJS')
$fileList = 'test.txt'
$CmdLine = @($source, $destination, $fileList) + $robocopyOptions
& 'robocopy.exe' $CmdLine
答案 2 :(得分:4)
您不能使用字符串以这种方式传递选项,因为当您编写
时robocopy $source $destination $fileList $robocopyOptions
PowerShell会将最后一个变量($robocopyOptions
)作为单个字符串进行评估,并引用它。这意味着robocopy将在其命令行上获得"/NJH /NHS"
(单个字符串,引用)。 (显然不是意图。)
有关如何解决此类问题的详细信息,请参阅此处:
http://windowsitpro.com/powershell/running-executables-powershell
该文章包括以下功能:
function Start-Executable {
param(
[String] $FilePath,
[String[]] $ArgumentList
)
$OFS = " "
$process = New-Object System.Diagnostics.Process
$process.StartInfo.FileName = $FilePath
$process.StartInfo.Arguments = $ArgumentList
$process.StartInfo.UseShellExecute = $false
$process.StartInfo.RedirectStandardOutput = $true
if ( $process.Start() ) {
$output = $process.StandardOutput.ReadToEnd() `
-replace "\r\n$",""
if ( $output ) {
if ( $output.Contains("`r`n") ) {
$output -split "`r`n"
}
elseif ( $output.Contains("`n") ) {
$output -split "`n"
}
else {
$output
}
}
$process.WaitForExit()
& "$Env:SystemRoot\system32\cmd.exe" `
/c exit $process.ExitCode
}
}
此函数将允许您在当前控制台窗口中运行可执行文件,还可以构建一个字符串参数数组以传递给它。
所以在你的情况下你可以使用这样的函数:
Start-Executable robocopy.exe $source,$destination,$fileList,$robocopyOptions
答案 3 :(得分:0)
将选项放在单独的参数中对我有用。使用Robocopy进行复制,排除任何CSV文件。
$roboCopyPath = $env:ROBOCOPY_PATH
$otherLogsPath = [System.IO.Path]::Combine($basePath, "Logs-Other")
$atrTestResults = [System.IO.Path]::Combine($Release, $BuildNumber)
$ResultsSummary = [System.IO.Path]::Combine($basePath, "Result")
$robocopyOptions = @("/log:$otherLogsPath\robocopy.log", '/xf', '*.csv')
$CmdLine = @($atrTestResults, $ResultsSummary) + $robocopyOptions
&$roboCopyPath $CmdLine