I have a portable app in the desktop folder
I have a file image.jpg compiled in the Application root.
I’m trying to make a copy of it using the following
if (file_exists(“image.jpg”)){
copy(“image.jpg”, “C:\Users\pc\Desktop\image2.jpg”);
}
A file is created but it’s 0kb in size.
I have the...