我正在检查我的代码,如果目录存在或不存在is_dir()
.
它适用于本地驱动器,但不适用于网络路径。
谁能帮我吗?
这是我的示例代码:
public function setXMLFilePath($filePath) {
if(is_dir($filePath)) {
$this->XMLFilePath = $filePath;
$retVal = true;
} else {
$ratVal = false;
}
return $retVal;
}//setXMLFilePath
我的网络路径是这样的:
$filePath = '\\Nas-heidi\heidi\FAS\Polish GameRobot\Export_Raffle\';