gpt4 book ai didi

powershell - 不支持复制项目失败的给定路径格式

转载 作者:行者123 更新时间:2023-12-03 00:28:45 29 4
gpt4 key购买 nike

这在驱赶我香蕉。我以为我缺少一些愚蠢的东西,但是我尝试了大约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

我知道Google搜索中有一百万个问题,但看起来我在做他们正在做的事情。对格式有什么想法吗?

最佳答案

您不能在Windows的文件名中放入冒号:

Picture of Windows Explorer's tooltip error message when trying to rename a file and type a colon into the name

您的日期格式为 2016-08-22T22:15:25.3693163+01:00 ,因此它不能作为文件名的一部分使用。

修复:没有修复方法可以使名称保持指定的样子;您可以-replace ':', '-',任何对您有意义的字符。

关于powershell - 不支持复制项目失败的给定路径格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39088712/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com