作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的安装程序中,我想创建一个空文件。在 linux 中,我会使用 touch 命令,但是在 NSIS 中最简单的方法是什么?
最佳答案
#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"
关于nsis - 如何使用 NSIS 创建空文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7315992/
我是一名优秀的程序员,十分优秀!