2011-09-06 4 views

答えて

9
#Compile time 
!appendfile "$%temp%\compiletimefile.txt" "" 

;Or if you need to force the file to be empty 
!appendfile "$%temp%\compiletimefile.txt" "" 
!delfile "$%temp%\compiletimefile.txt" 
!appendfile "$%temp%\compiletimefile.txt" "" 


#Run time, method 1 
FileOpen $0 "$temp\runtimefile1.txt" w 
FileClose $0 


#Run time, method 2 
File "/oname=$temp\runtimefile2.txt" "$%temp%\compiletimefile.txt" 
+0

あなたのソリューションに感謝します。私は!appendfileコマンドを認識していませんでした。 – Oberon

関連する問題