我正在尝试递归遍历一组包含要上传的文件或另一个目录以检查要上传的文件的目录。
到目前为止,我正在让我的脚本深入文件系统 2 级,但我还没有想出一种方法来将我当前的完整文件路径保持在我的函数范围内:
function getPathsinFolder($basepath = null) {
$fullpath = 'www/doc_upload/test_batch_01/';
if(isset($basepath)):
$files = scandir($fullpath . $basepath . '/');
else:
$files = scandir($fullpath);
endif;
$one = array_shift($files); // to remove . & ..
$two = array_shift($files);
foreach($files as $file):
$type = filetype($fullpath . $file);
print $file . ' is a ' . $type . '<br/>';
if($type == 'dir'):
getPathsinFolder($file);
elseif(($type == 'file')):
//uploadDocsinFolder($file);
endif;
endforeach;
}
所以,每次我打电话时,getPathsinFolder
我都有我开始的基本路径加上我正在扫描的目录的当前名称。但是我缺少介于两者之间的中间文件夹。如何将完整的当前文件路径保持在范围内?