WinAPI:kernel32:CopyFile: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
No edit summary |
|||
Line 9: | Line 9: | ||
[[WinAPI:kernel32]] | [[WinAPI:kernel32]] | ||
[[Category:System Plugin Examples]] |
Revision as of 14:06, 20 August 2007
CopyFile Function
Reference: http://msdn2.microsoft.com/en-us/library/aa363851.aspx
StrCpy $0 "copy_from" ;Path of copy file from StrCpy $1 "copy_to" ;Path of copy file to StrCpy $2 1 ; only 0 or 1, set 0 to overwrite file if it already exists System::Call 'kernel32::CopyFile(t r0, t r1, b r2) l' Pop $0 ; pops a bool. if overwrite is off and there is a file then error will be 1
Replace copy_from with the windows path (C:\myfile.txt) and replace copy_to with the windows path (C:\mynewfile.txt).