0

请参考我在 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 中的蹒跚学步的孩子,并帮助我取得巨大成功:-)。

4

1 回答 1

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")
于 2013-01-09T15:26:07.240 回答