我的 Web 应用程序存储在 XAMPP/htdocs/projectname/ 目录中。我在上面的目录中有图像(源)和 img(目标)文件夹。我正在编写以下代码行以将图像从一个文件夹复制到另一个文件夹。但我收到以下警告:(警告:复制(资源 id #3/image1.jpg):无法打开流:C:\xampp\htdocs 中没有这样的文件或目录) 并且图像不会复制到目的地。
<?php
$src = opendir('../images/');
$dest = opendir('../img/');
while($readFile = readdir($src)){
if($readFile != '.' && $readFile != '..'){
if(!file_exists($readFile)){
if(copy($src.$readFile, $dest.$readFile)){
echo "Copy file";
}else{
echo "Canot Copy file";
}
}
}
}
?>