WinAPI:kernel32:CopyFile: Difference between revisions
From NSIS Wiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{PageAuthor|sag47}} | |||
== CopyFile Function == | == CopyFile Function == | ||
Reference: http://msdn2.microsoft.com/en-us/library/aa363851.aspx | Reference: http://msdn2.microsoft.com/en-us/library/aa363851.aspx |
Revision as of 20:50, 20 August 2007
Author: sag47 (talk, contrib) |
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).