为什么我们在此代码中使用“ if (($fname != '.') && ($fname != '..')) ”...用于查找文件格式是 Windows 还是 linux 或 mac ?
if (is_dir( "{$dir}/{$fname}" )) {
if (($fname != '.') && ($fname != '..')) {
echo "<u>Deleting Files in the Directory</u>: {$dir}/{$fname} <br />";
deleteDir("$dir/$fname");
}
}