php 判断文件还是目录,php 判断文件或目录是否存在

论坛 期权论坛 脚本     
已经匿名di用户   2022-5-29 19:19   2263   0

$file = "data.txt";$dir = "http://www.blogxuan.com/Data";

if(file_exists($file)){ echo "当前目录中,文件".$file."存在"; echo "";}else{ echo "当前目录中,文件".$file."不存在";}

if(is_dir($dir)){ echo "当前目录下,目录".$dir."存在";}else{ echo "当前目录下,目录".$dir."不存在";}

/**

* 获取文件目录列表

* @param string $pathname 路径

* @param integer $fileFlag 文件列表 0所有文件列表,1只读文件夹,2是只读文件(不包含文件夹)

* @param string $pathname 路径

* @return array

*/

function get_file_folder_List($pathname,$fileFlag = 0, $pattern='*') {

$fileArray = array();

$pathname = rtrim($pathname,'/') . '/';

$list = glob($pathname.$pattern);

foreach ($list as $i => $file) {

switch ($fileFlag) {

case 0:

$fileArray[] = basename($file);

break;

case 1:

if (is_dir($file)) {

$fileArray[]=basename($file);

}

break;

case 2:

if (is_file($file)) {

$fileArray[]=basename($file);

}

break;

default:

break;

}

}

if(empty($fileArray)) $fileArray = NULL;

return $fileArray;

}

用法:$onlineStyleList = get_file_folder_List('./Data/online/', 2, '*.css');

玄玄 博客 www.blogxuan.com

分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:81
帖子:4969
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP