mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-14 06:23:55 +01:00
4 lines
107 B
Plaintext
4 lines
107 B
Plaintext
function file_copy_override(src, dest) {
|
|
if(file_exists(dest)) file_delete(dest);
|
|
file_copy(src, dest);
|
|
} |