-
Notifications
You must be signed in to change notification settings - Fork 0
File_copy
hpgDesigns edited this page Aug 8, 2021
·
1 revision
NOTOC {{-}}
Copies file fname to newname.
'''Note: '''Like GameMaker, if newname already exists, fname will overwrite it.
- fname: The source file to copy
- newname: The destination file
Returns 1 if it succeeds, 0 if it fails.
// file1.txt will be copied to file2.txt
file_copy("file1.txt", "file2.txt");This is number 1