请参阅我在PS中的第一个代码,如下:
我创建了一个Test.ps1
文件并包含以下代码:
$path = D:\Five-Levels_Deep_Subfolder\Data
$file = A_Very_Long_INI_FileName.ini
#If $file exists, Delete it:
if (Test-Path + $path) { Remove-Item $path + $file }
#Run the following Application:
& $path + myApplication.exe
但是,结果试图用一些可怕的错误消息来吓唬我。事实上,上述代码行都没有错误。
请忍受PS中的小孩,并帮助我取得巨大成功: - )。
答案 0 :(得分:1)
试试这个
$path = "D:\Five-Levels_Deep_Subfolder\Data"
$file = "A_Very_Long_INI_FileName.ini"
$filepath = join-path $path $file
#If $filepath exists, Delete it:
if (Test-Path $filepath) { Remove-Item $filepath}
#Run the following Application:
& ($path + "\myApplication.exe")