0
我有一個csv文件,圖像名稱和圖像前綴,我想在該圖像名稱中添加前綴,並將其重命名並將其移動到另一個目錄。如何檢查文件夾中的圖像名稱並重命名它?
<?php
$fullpath = '/var/www/html/john/Source/01-00228.jpg';
$additional = '3D_Perception_';
while (file_exists($fullpath)) {
$info = pathinfo($fullpath);
$fullpath = $info['dirname'] . '/' . $additional
. $info['filename']
. '.' . $info['extension'];
echo $fullpath ;
}
?>
下面的圖像文件儲存在Source
目錄我想將它與一些前綴重命名和移動它其他目錄一樣Destination
請幫我找到這個解決方案。