In my installer I would like to create an empty file. In linux I would use the touch command, but what's the easiest way to do this in NSIS?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted
#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"
link|improve this answer
Thanks for your solution. I wasn't aware of the !appendfile command. – Oberon Sep 13 '11 at 12:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.