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 に答える