我正在尝试在Power Shell中运行一次检查以查看文件是否存在,如果存在,则将其复制到另一个位置,否则,只需在屏幕上显示一条错误消息即可。
if (Test-Path "Z:\Network Folder\Another Folder\"FileInQuestion.docx") {
Write-Host "Contents exist and and will be copied!"
} else {
Write-Host "ERROR: Cannot find file."
}
答案 0 :(得分:1)
对不起,我上次答复是,我没有仔细看
尝试这个test-path "\\network folder\another folder\YourFiles.docx"
通常,除非是真实路径,否则我们不会使用z:\
。您说这是一条网络路径。
\"FileInQuestion.docx"
在该路径中有更多"
在使用Net-Use
之前您曾经使用过test-path
命令吗?