我有以下 powershell 将文件从服务器移动到本地。我一直找不到路径。路径长约 280 个字符 + 文件名约 30 到 70 个字符。该怎么办?
$destDir = "C:\test\Files\"
$csv = import-csv 'C:\test\FilesWithPath.csv'
#For each line in the CSV
$csv | % {
robocopy $_.SourceFilePath $destDir $_.SourceFileName
}