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