NSIS File /oname的使用,超完整解析

File

[/nonfatal] [/a] ([/r] [/x file|wildcard [...]] (file|wildcard) [...] | /oname=file.dat infile.dat)

  • 官方解释如下:
  • Use /oname=X switch to change the output name. X may contain variables and can be a fully qualified path or a relative path in which case it will be appended to $OUTDIR set by SetOutPath. When using this switch, only one file can be specified. If the output name contains spaces, quote the entire parameter, including /oname, as shown in the examples below.
  • 如下案例解析:
  • 第1条: 将somefile.txt的内容复制到$OUTDIR/temp.dat中,$OUTDIR是输出文件目录,通过SetOutPath设置,如设置$OUTDIR为d:\project,则somefile.txt的内容就被复制到d:\project\temp.dat文件中。
  • 第2条: $TEMP是系统的一个临时文件目录,不同的电脑会有些许不同,通常为C:Windows\temp,由于这是一个完整路径,所以并不需要用到$OUTDIR,即把somefile.txt的内容复制到$TEMP/temp.dat。
  • 第3条: 这意思是说/oname后面的内容中要是有空格的话就要把包括/oname在内的整条语句用双引号括起来。
1:File /oname=temp.dat somefile.ext
2:File /oname=$TEMP\temp.dat somefile.ext
3:File "/oname=$TEMP\name with spaces.dat" somefile.ext

你可能感兴趣的:(说明)