When you use the PHP copy function, the operation blindly copies over the destination file, even if it already exists. How do you copy a file safely, only performing the copy if there is no existing file?
|
feedback
|
|
The obvious solution would be to call file_exists to check to see if the file exists, but doing that could cause a race condition. There is always the possibility that the other file will be created in between when you call file_exists and when you call copy. The only safe way to check if the file exists is to use fopen. When you call fopen, set the mode to 'x'. This tells fopen to create the file, but only if it doesn't exist. If it exists, fopen will fail, and you'll know that you couldn't create the file. If it succeeds, you will have a created a file at the destination that you can safely copy over. Sample code is below:
| ||||
feedback
|
|
I think you answered your own question - check to make sure the destination file exists before performing the copy. If the file exists, skip the copy. Update: I see you really did answer your own question. You mention race conditions, but if you do find that the file already exists, how do you know that:
I think you should consider these questions when designing a solution to your problem. | ||||
|
feedback
|
|
Try using the
Unfortunately, this will not work on Windows. | |||
|
feedback
|