我试图使用 shell 命令在 Linux 服务器上查找所有可读的目录和子目录,我尝试过这个命令行:
find /home -maxdepth 1 -type d -perm -o=r
但是这个命令行只显示 ( /
) 目录中的可读文件夹,而不是子目录。
我想使用 php 或命令行来做到这一点
谢谢你
“但是这个命令行只显示( / )目录中的可读文件夹,而不是子目录”
当您将-maxdepth 1
find 命令设置为/home
only 时,将其删除以允许 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";
}
}