在 powershell 中使用 copy-item 来传输共享驱动器上的文件

Using copy-item in powershell to transfer file on a shared drive

我有一个 excel 文件,用于对数据库执行某些操作,并且 sheet 需要在进行更新时立即复制。我有对数据库进行更新的脚本,但在此之前,我使用 Copy-Item 命令以新名称保存源 excel 文件的副本。但是我收到一个一般错误,例如:

"Error/ getting/reading excel file \shared\documents\myData.xlsx"  

这是权限问题还是我的语法不正确。或者我应该在 powershell 中使用 robocopy 命令?这是我到目前为止编写的 powershell 代码块:

#source file location
$fileLocation = "\shared\documents\myData.xlsx"
#getting current date
$currentDate = Get-Date -Format "yyyy-MM-dd HH:mm"
#destination location
$backUpLocation = "\shared\backup\myData_" + $currentDate + ".xlsx"
#copying file 
Copy-Item $fileLocation $backUpLocation

如有更好的解决方案,我们将不胜感激。提前致谢。

射击!有一个愚蠢的错误,文件名不能有 ':',而我正在获取的 $currDate 有一个冒号被破坏了。 Copy-Item 效果最好,因为它还允许在单个命令本身中重命名文件。