我正在尝试检查文件夹是否为空。
我使用Apache服务器和Windows 10操作系统。
我的代码有什么问题?
function is_dir_empty($dir) {
if (!is_readable($dir)) return NULL;
return (count(scandir($dir)) == 2);
}
$dir = "C:/Users/name/.spyder/Python2/data/$day-$month-$year/emptyFolder";
print "<br>$dir<br>";
if (is_dir_empty($dir)) {
echo "the folder is empty";
}else{
echo "the folder is NOT empty";
}