我正在尝试使用shell命令查找Linux服务器上所有可读的目录和子目录,我试过这个命令行:
find /home -maxdepth 1 -type d -perm -o=r
但这个命令行只显示(/
)目录中的可读文件夹,而不显示子目录。
我想使用php或命令行来做到这一点
感谢
"但此命令行仅显示(/)中可读的文件夹目录而不是子目录"
当您设置-maxdepth 1
时,您将find命令限制为仅/home
,将其删除以允许find递归搜索。
find /home -type d -perm -o=r
如果您需要本机php
解决方案,可以使用此glob_recursive
函数和is_writable
,即:
<?php
function rglob($pattern, $flags = 0) {
$files = glob($pattern, $flags);
foreach (glob(dirname($pattern).'/*', GLOB_ONLYDIR|GLOB_NOSORT) as $dir) {
$files = array_merge($files, rglob($dir.'/'.basename($pattern), $flags));
}
return $files;
}
$dirs = rglob('/home/*', GLOB_ONLYDIR);
foreach( $dirs as $dir){
if(is_writable($dir)){
echo "$dir is writable.n";
}
}