diff --git a/src/Faker/Provider/File.php b/src/Faker/Provider/File.php index 6462760e..2f0155ea 100644 --- a/src/Faker/Provider/File.php +++ b/src/Faker/Provider/File.php @@ -587,9 +587,7 @@ class File extends \Faker\Provider\Base $destinationFile = Uuid::uuid() . '.' . pathinfo($sourceFullPath, PATHINFO_EXTENSION); $destinationFullPath = $targetDirectory . DIRECTORY_SEPARATOR . $destinationFile; - copy($sourceFullPath, $destinationFullPath); - - if (!file_exists($destinationFullPath)) { + if (false === copy($sourceFullPath, $destinationFullPath)) { return false; }