任何人都可以让我知道如何阅读目录并找到该目录中的文件和目录。
我尝试使用以下is_dir()
函数检查目录
$main = "path to the directory";//Directory which is having some files and one directory
readDir($main);
function readDir($main) {
$dirHandle = opendir($main);
while ($file = readdir($dirHandle)) {
if ($file != "." && $file != "..") {
if (is_dir($file)) {
//nothing is coming here
}
}
}
}
但它不检查目录。
谢谢