檢查文件或目錄是否存在 ,我們使用了php中常用的函數file_exists,這個函數就可以實現我想要的功能,下面大家慢慢參考一下
下面是一個簡單的檢查文件是否存在的實例代碼:
<?php $filename = '/path/to/foo.txt'; if (file_exists($filename)) { echo "The file $filename exists"; } else { echo "The file $filename does not exist"; } ?>
如果文件存在,執行該 PHP 文件的顯示結果是:
The file C:blablaphphello.txt exists.
如果文件不存在,執行該 PHP 文件的顯示結果是:
The file C:\blabla\phphello.txt does not exist.
你也可以用file_exists 函數測試某個目錄是否存在,示例代碼如下:
if (file_exists("C:\blabla\php")) {echo "yes";} else {echo "no";}
實例
/** * 文件或目錄權限檢查函數 * * @access public * @param string $file_path 文件路徑 * @param bool $rename_prv 是否在檢查修改權限時檢查執行rename()函數的權限 * * @return int 返回值的取值范圍為{0 <= x <= 15},每個值表示的含義可由四位二進制數組合推出。 * 返回值在二進制計數法中,四位由高到低分別代表 * 可執行rename()函數權限、可對文件追加內容權限、可寫入文件權限、可讀取文件權限。 */ function file_mode_info($file_path) { /* 如果不存在,則不可讀、不可寫、不可改 */ if (!file_exists($file_path)) { return false; } $mark = 0; if (strtoupper(substr(PHP_OS, 0, 3)) == 'WIN') { /* 測試文件 */ $test_file = $file_path . '/cf_test.txt'; /* 如果是目錄 */ if (is_dir($file_path)) { /* 檢查目錄是否可讀 */ // http://www.manongjc.com/article/1354.html $dir = @opendir($file_path); if ($dir === false) { return $mark; //如果目錄打開失敗,直接返回目錄不可修改、不可寫、不可讀 } if (@readdir($dir) !== false) { $mark ^= 1; //目錄可讀 001,目錄不可讀 000 } @closedir($dir); /* 檢查目錄是否可寫 */ $fp = @fopen($test_file, 'wb'); if ($fp === false) { return $mark; //如果目錄中的文件創建失敗,返回不可寫。 } if (@fwrite($fp, 'directory access testing.') !== false) { // http://www.manongjc.com/article/1353.html $mark ^= 2; //目錄可寫可讀011,目錄可寫不可讀 010 } @fclose($fp); @unlink($test_file); /* 檢查目錄是否可修改 */ $fp = @fopen($test_file, 'ab+'); if ($fp === false) { return $mark; } if (@fwrite($fp, "modify test.rn") !== false) { $mark ^= 4; } @fclose($fp); /* 檢查目錄下是否有執行rename()函數的權限 */
// http://www.manongjc.com/article/1352.html
if (@rename($test_file, $test_file) !== false) { $mark ^= 8; } @unlink($test_file); } /* 如果是文件 */ elseif (is_file($file_path)) { /* 以讀方式打開 */ $fp = @fopen($file_path, 'rb'); if ($fp) { $mark ^= 1; //可讀 001 } @fclose($fp); /* 試著修改文件 */ $fp = @fopen($file_path, 'ab+'); if ($fp && @fwrite($fp, '') !== false) { $mark ^= 6; //可修改可寫可讀 111,不可修改可寫可讀011... } @fclose($fp); /* 檢查目錄下是否有執行rename()函數的權限 */ // http://www.manongjc.com/article/1355.html if (@rename($test_file, $test_file) !== false) { $mark ^= 8; } } } else { if (@is_readable($file_path)) { $mark ^= 1; } if (@is_writable($file_path)) { $mark ^= 14; } } return $mark; }
PHP判斷目錄是否存在
/**************************************************** * 將xml數據流,寫入到xml文件 * @param $xmlData * @return bool|string */ function writeXmlFile($xmlData) { $time = time(); //獲取時間戳,用於給文件命名 $path = dirname(__FILE__); //獲取當前絕對路徑 $path = substr_replace($path, "", stripos($path, "actions\data")); //將此文件所在的固有路徑替換成空 $path .= "xmlFiles\"; //存放目錄名 /*判斷目標目錄是否存在,不存在則新建*/ if(!is_dir($path)) { mkdir($path); //新建目錄 } /*記錄完整路徑和文件名*/ $filePathAndName = $path.$time.".xml"; /*打開文件,文件名為<時間戳> + <.xml>*/ // http://www.manongjc.com/article/1356.html $fp = fopen($filePathAndName, "w"); if(!$fp) { return false; } /*寫入文件流*/ $flag = fwrite($fp, $xmlData); if(!$flag) { return false; } fclose($fp); return $filePathAndName; }