default strings, current folder
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3176 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
82e3e6dadf
commit
98d481d7cb
5 changed files with 14 additions and 3 deletions
|
@ -10,7 +10,9 @@ Calls a function_name inside a NSIS extension DLL. See Contrib\\ExDLL for an exa
|
|||
|
||||
\c [/SILENT] [/FILESONLY] filespec_on_destsys destination_path [size_of_files_in_kb]
|
||||
|
||||
Copies files from the source to the destination on the installing system. Useful with $EXEDIR if you want to copy from installation media, or to copy from one place to another on the system. Uses SHFileOperation, so the user might see a status window of the copy operation if it is large (to disable this, use /SILENT). The last parameter specifies how big the copy is (in kilobytes), so that the installer can approximate the disk space requirements. On error, or if the user cancels the copy (only possible when /SILENT was omitted), the error flag is set. If /FILESONLY is specified, only files are copied.
|
||||
Copies files from the source to the destination on the installing system. Useful with $EXEDIR if you want to copy from installation media, or to copy from one place to another on the system. You might see a Windows status window of the copy operation takes a lot of time (to disable this, use /SILENT). The last parameter can be used to specify the size of the files that will be copies (in kilobytes), so that the installer can approximate the disk space requirements. On error, or if the user cancels the copy (only possible when /SILENT was omitted), the error flag is set. If /FILESONLY is specified, only files are copied.
|
||||
|
||||
If no absolute path is specified the current folder will be used. The current folder is the folder set using the last \R{setoutpath}{SetOutPath} instruction. If you have not used \R{setoutpath}{SetOutPath} the current folder is \R{varother}{$EXEDIR}.
|
||||
|
||||
\S2{createdirectory} CreateDirectory
|
||||
|
||||
|
@ -18,6 +20,8 @@ Copies files from the source to the destination on the installing system. Useful
|
|||
|
||||
Creates (recursively if necessary) the specified directory. The error flag is set if the directory couldn't be created.
|
||||
|
||||
You should always specify an absolute path.
|
||||
|
||||
\S2{createshortcut} CreateShortCut
|
||||
|
||||
\c link.lnk target.file [parameters [icon.file [icon_index_number [start_options [keyboard_shortcut [description]]]]]]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue