这让我很生气。我假设我错过了一些愚蠢的东西,但我尝试了大约 10 种不同的格式,但没有任何效果。
这是我正在运行的代码:
$today=$(Get-Date -Format o)
$destfile = "C:\SEA-FTP\toFTP\SEAInfo-$today.csv"
$srcfile = "C:\SEA-FTP\temp\QueryCSVTempMstr.csv"
Copy-Item $srcfile -Destination $destfile
这是错误消息:
Copy-Item : The given path's format is not supported.
At C:\SEA-FTP\BCP_SQL_Script-v1.0.ps1:53 char:10
+ Copy-Item <<<< $srcfile -Destination $destfile
+ CategoryInfo : NotSpecified: (:) [Copy-Item], NotSupportedException
+ FullyQualifiedErrorId : System.NotSupportedException,Microsoft.PowerShell.Commands.CopyItemCommand
我知道在谷歌搜索中有一百万个问题,但看起来我正在做他们正在做的事情。对格式有什么想法吗?