Home  >  Article  >  Backend Development  >  php 获取目录文件

php 获取目录文件

WBOY
WBOYOriginal
2016-06-23 13:34:441103browse

1 用户 opendir 函数

$dir = "D:/";  //要获取的目录//先判断指定的路径是不是一个文件夹if (is_dir($dir)){	if ($dh = opendir($dir)){		while (($file = readdir($dh))!= false){			//文件名的全路径 包含文件名			$filePath = $dir.$file;		}		closedir($dh);	}}

2 用户 glob 函数

$dir = "D:/";  //要获取的目录$files = glob($dir . '/*.data');

语法

array glob ( string $pattern [, int $flags = 0 ] )
glob() 函数依照 libc glob() 函数使用的规则寻找所有与 pattern 匹配的文件路径,类似于一般 shells 所用的规则一样。不进行缩写扩展或参数替代。
patternThe pattern. No tilde expansion or parameter substitution is done.flags有效标记有:GLOB_MARK - 在每个返回的项目中加一个斜线GLOB_NOSORT - 按照文件在目录中出现的原始顺序返回(不排序)GLOB_NOCHECK - 如果没有文件匹配则返回用于搜索的模式GLOB_NOESCAPE - 反斜线不转义元字符GLOB_BRACE - 扩充 {a,b,c} 来匹配 'a','b' 或 'c'GLOB_ONLYDIR - 仅返回与模式匹配的目录项GLOB_ERR - 停止并读取错误信息(比如说不可读的目录),默认的情况下忽略所有错误


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn