类 yii\helpers\FileHelper
继承关系 | yii\helpers\FileHelper » yii\helpers\BaseFileHelper |
---|---|
可用版本 | 2.0 |
源代码 | https://github.com/yiisoft/yii2/blob/master/framework/helpers/FileHelper.php |
文件系统帮助器。
公共属性
属性 | 类型 | 描述 | 定义于 |
---|---|---|---|
$mimeAliasesFile | 字符串 | 包含 MIME 别名的 PHP 文件的路径(或别名)。 | yii\helpers\BaseFileHelper |
$mimeExtensionsFile | 字符串 | 包含每个 MIME 类型扩展名的 PHP 文件的路径(或别名)。 | yii\helpers\BaseFileHelper |
$mimeMagicFile | 字符串 | 包含 MIME 类型信息的 PHP 文件的路径(或别名)。 | yii\helpers\BaseFileHelper |
公共方法
方法 | 描述 | 定义于 |
---|---|---|
changeOwnership() | 更改文件或目录的 Unix 用户和/或组所有权,并可选地更改模式。 | yii\helpers\BaseFileHelper |
copyDirectory() | 将整个目录复制为另一个目录。 | yii\helpers\BaseFileHelper |
createDirectory() | 创建新的目录。 | yii\helpers\BaseFileHelper |
filterPath() | 检查给定的文件路径是否满足过滤选项。 | yii\helpers\BaseFileHelper |
findDirectories() | 返回指定目录及其子目录下找到的目录。 | yii\helpers\BaseFileHelper |
findFiles() | 返回指定目录及其子目录下找到的文件。 | yii\helpers\BaseFileHelper |
getExtensionByMimeType() | 根据给定的 MIME 类型确定最常见的扩展名。 | yii\helpers\BaseFileHelper |
getExtensionsByMimeType() | 根据给定的 MIME 类型确定扩展名。 | yii\helpers\BaseFileHelper |
getMimeType() | 确定指定文件的 MIME 类型。 | yii\helpers\BaseFileHelper |
getMimeTypeByExtension() | 根据指定文件的扩展名确定 MIME 类型。 | yii\helpers\BaseFileHelper |
localize() | 返回指定文件的本地化版本。 | yii\helpers\BaseFileHelper |
normalizePath() | 规范化文件/目录路径。 | yii\helpers\BaseFileHelper |
removeDirectory() | 递归地删除目录(及其所有内容)。 | yii\helpers\BaseFileHelper |
unlink() | 以跨平台方式删除文件或符号链接 | yii\helpers\BaseFileHelper |
受保护方法
方法 | 描述 | 定义于 |
---|---|---|
loadMimeAliases() | 从指定文件加载 MIME 别名。 | yii\helpers\BaseFileHelper |
loadMimeExtensions() | 从指定文件加载 MIME 扩展名。 | yii\helpers\BaseFileHelper |
loadMimeTypes() | 从指定文件加载 MIME 类型。 | yii\helpers\BaseFileHelper |
normalizeOptions() | yii\helpers\BaseFileHelper |
常量
常量 | 值 | 描述 | 定义于 |
---|---|---|---|
PATTERN_CASE_INSENSITIVE | 32 | yii\helpers\BaseFileHelper | |
PATTERN_ENDSWITH | 4 | yii\helpers\BaseFileHelper | |
PATTERN_MUSTBEDIR | 8 | yii\helpers\BaseFileHelper | |
PATTERN_NEGATIVE | 16 | yii\helpers\BaseFileHelper | |
PATTERN_NODIR | 1 | yii\helpers\BaseFileHelper |
方法详情
定义于: yii\helpers\BaseFileHelper::changeOwnership()
更改文件或目录的 Unix 用户和/或组所有权,并可选地更改模式。
注意:此函数不会在远程文件上工作,因为要检查的文件必须通过服务器的文件系统访问。注意:在 Windows 上,此函数在应用于普通文件时会静默失败。
public static void changeOwnership ( $path, $ownership, $mode = null ) | ||
$path | 字符串 |
文件或目录的路径。 |
$ownership | 字符串|数组|整数|空 |
文件或目录的用户和/或组所有权。当 $ownership 是字符串时,格式为 'user:group',其中两者都是可选的。例如,'user' 或 'user:' 将只更改用户,':group' 将只更改组,'user:group' 将更改两者。当 $owners 是索引数组时,格式为 [0 => user, 1 => group],例如 |
$mode | 整数|空 |
要为文件或目录设置的权限。如果传递 |
public static function changeOwnership($path, $ownership, $mode = null)
{
if (!file_exists((string)$path)) {
throw new InvalidArgumentException('Unable to change ownership, "' . $path . '" is not a file or directory.');
}
if (empty($ownership) && $ownership !== 0 && $mode === null) {
return;
}
$user = $group = null;
if (!empty($ownership) || $ownership === 0 || $ownership === '0') {
if (is_int($ownership)) {
$user = $ownership;
} elseif (is_string($ownership)) {
$ownerParts = explode(':', $ownership);
$user = $ownerParts[0];
if (count($ownerParts) > 1) {
$group = $ownerParts[1];
}
} elseif (is_array($ownership)) {
$ownershipIsIndexed = ArrayHelper::isIndexed($ownership);
$user = ArrayHelper::getValue($ownership, $ownershipIsIndexed ? 0 : 'user');
$group = ArrayHelper::getValue($ownership, $ownershipIsIndexed ? 1 : 'group');
} else {
throw new InvalidArgumentException('$ownership must be an integer, string, array, or null.');
}
}
if ($mode !== null) {
if (!is_int($mode)) {
throw new InvalidArgumentException('$mode must be an integer or null.');
}
if (!chmod($path, $mode)) {
throw new Exception('Unable to change mode of "' . $path . '" to "0' . decoct($mode) . '".');
}
}
if ($user !== null && $user !== '') {
if (is_numeric($user)) {
$user = (int) $user;
} elseif (!is_string($user)) {
throw new InvalidArgumentException('The user part of $ownership must be an integer, string, or null.');
}
if (!chown($path, $user)) {
throw new Exception('Unable to change user ownership of "' . $path . '" to "' . $user . '".');
}
}
if ($group !== null && $group !== '') {
if (is_numeric($group)) {
$group = (int) $group;
} elseif (!is_string($group)) {
throw new InvalidArgumentException('The group part of $ownership must be an integer, string or null.');
}
if (!chgrp($path, $group)) {
throw new Exception('Unable to change group ownership of "' . $path . '" to "' . $group . '".');
}
}
}
public static void copyDirectory ( $src, $dst, $options = [] ) | ||
$src | 字符串 |
源目录 |
$dst | 字符串 |
目标目录 |
$options | 数组 |
目录复制选项。有效选项如下
|
抛出 | yii\base\InvalidArgumentException |
如果无法打开目录 |
---|
public static function copyDirectory($src, $dst, $options = [])
{
$src = static::normalizePath($src);
$dst = static::normalizePath($dst);
if ($src === $dst || strpos($dst, $src . DIRECTORY_SEPARATOR) === 0) {
throw new InvalidArgumentException('Trying to copy a directory to itself or a subdirectory.');
}
$dstExists = is_dir($dst);
if (!$dstExists && (!isset($options['copyEmptyDirectories']) || $options['copyEmptyDirectories'])) {
static::createDirectory($dst, isset($options['dirMode']) ? $options['dirMode'] : 0775, true);
$dstExists = true;
}
$handle = opendir($src);
if ($handle === false) {
throw new InvalidArgumentException("Unable to open directory: $src");
}
if (!isset($options['basePath'])) {
// this should be done only once
$options['basePath'] = realpath($src);
$options = static::normalizeOptions($options);
}
while (($file = readdir($handle)) !== false) {
if ($file === '.' || $file === '..') {
continue;
}
$from = $src . DIRECTORY_SEPARATOR . $file;
$to = $dst . DIRECTORY_SEPARATOR . $file;
if (static::filterPath($from, $options)) {
if (isset($options['beforeCopy']) && !call_user_func($options['beforeCopy'], $from, $to)) {
continue;
}
if (is_file($from)) {
if (!$dstExists) {
// delay creation of destination directory until the first file is copied to avoid creating empty directories
static::createDirectory($dst, isset($options['dirMode']) ? $options['dirMode'] : 0775, true);
$dstExists = true;
}
copy($from, $to);
if (isset($options['fileMode'])) {
@chmod($to, $options['fileMode']);
}
} else {
// recursive copy, defaults to true
if (!isset($options['recursive']) || $options['recursive']) {
static::copyDirectory($from, $to, $options);
}
}
if (isset($options['afterCopy'])) {
call_user_func($options['afterCopy'], $from, $to);
}
}
}
closedir($handle);
}
定义于: yii\helpers\BaseFileHelper::createDirectory()
创建新的目录。
此方法类似于 PHP mkdir()
函数,不同之处在于它使用 chmod()
设置创建目录的权限,以避免 umask
设置的影响。
public static boolean createDirectory ( $path, $mode = 0775, $recursive = true ) | ||
$path | 字符串 |
要创建的目录的路径。 |
$mode | 整数 |
要为创建的目录设置的权限。 |
$recursive | 布尔值 |
是否创建父目录(如果不存在)。 |
返回 | 布尔值 |
目录是否成功创建 |
---|---|---|
抛出 | yii\base\Exception |
如果无法创建目录(即由于并行更改导致的 php 错误) |
public static function createDirectory($path, $mode = 0775, $recursive = true)
{
if (is_dir($path)) {
return true;
}
$parentDir = dirname($path);
// recurse if parent dir does not exist and we are not at the root of the file system.
if ($recursive && !is_dir($parentDir) && $parentDir !== $path) {
static::createDirectory($parentDir, $mode, true);
}
try {
if (!mkdir($path, $mode)) {
return false;
}
} catch (\Exception $e) {
if (!is_dir($path)) {// https://github.com/yiisoft/yii2/issues/9288
throw new \yii\base\Exception("Failed to create directory \"$path\": " . $e->getMessage(), $e->getCode(), $e);
}
}
try {
return chmod($path, $mode);
} catch (\Exception $e) {
throw new \yii\base\Exception("Failed to change permissions for directory \"$path\": " . $e->getMessage(), $e->getCode(), $e);
}
}
定义于: yii\helpers\BaseFileHelper::filterPath()
检查给定的文件路径是否满足过滤选项。
public static boolean filterPath ( $path, $options ) | ||
$path | 字符串 |
要检查的文件或目录的路径 |
$options | 数组 |
过滤选项。有关支持选项的说明,请参见 findFiles()。 |
返回 | 布尔值 |
文件或目录是否满足过滤选项。 |
---|
public static function filterPath($path, $options)
{
if (isset($options['filter'])) {
$result = call_user_func($options['filter'], $path);
if (is_bool($result)) {
return $result;
}
}
if (empty($options['except']) && empty($options['only'])) {
return true;
}
$path = str_replace('\\', '/', $path);
if (
!empty($options['except'])
&& ($except = self::lastExcludeMatchingFromList($options['basePath'], $path, $options['except'])) !== null
) {
return $except['flags'] & self::PATTERN_NEGATIVE;
}
if (!empty($options['only']) && !is_dir($path)) {
return self::lastExcludeMatchingFromList($options['basePath'], $path, $options['only']) !== null;
}
return true;
}
定义于: yii\helpers\BaseFileHelper::findDirectories()
返回指定目录及其子目录下找到的目录。
public static array findDirectories ( $dir, $options = [] ) | ||
$dir | 字符串 |
将查找文件的目录。 |
$options | 数组 |
目录搜索选项。有效选项为
|
返回 | 数组 |
在目录下找到的目录,没有特定顺序。排序取决于使用的文件系统。 |
---|---|---|
抛出 | yii\base\InvalidArgumentException |
如果目录无效。 |
public static function findDirectories($dir, $options = [])
{
$dir = self::clearDir($dir);
$options = self::setBasePath($dir, $options);
$list = [];
$handle = self::openDir($dir);
while (($file = readdir($handle)) !== false) {
if ($file === '.' || $file === '..') {
continue;
}
$path = $dir . DIRECTORY_SEPARATOR . $file;
if (is_dir($path) && static::filterPath($path, $options)) {
$list[] = $path;
if (!isset($options['recursive']) || $options['recursive']) {
$list = array_merge($list, static::findDirectories($path, $options));
}
}
}
closedir($handle);
return $list;
}
定义于: yii\helpers\BaseFileHelper::findFiles()
返回指定目录及其子目录下找到的文件。
public static array findFiles ( $dir, $options = [] ) | ||
$dir | 字符串 |
将查找文件的目录。 |
$options | 数组 |
文件搜索选项。有效选项为
|
返回 | 数组 |
在目录下找到的文件,没有特定顺序。排序取决于使用的文件系统。 |
---|---|---|
抛出 | yii\base\InvalidArgumentException |
如果目录无效。 |
public static function findFiles($dir, $options = [])
{
$dir = self::clearDir($dir);
$options = self::setBasePath($dir, $options);
$list = [];
$handle = self::openDir($dir);
while (($file = readdir($handle)) !== false) {
if ($file === '.' || $file === '..') {
continue;
}
$path = $dir . DIRECTORY_SEPARATOR . $file;
if (static::filterPath($path, $options)) {
if (is_file($path)) {
$list[] = $path;
} elseif (is_dir($path) && (!isset($options['recursive']) || $options['recursive'])) {
$list = array_merge($list, static::findFiles($path, $options));
}
}
}
closedir($handle);
return $list;
}
定义于: yii\helpers\BaseFileHelper::getExtensionByMimeType()
根据给定的 MIME 类型确定最常见的扩展名。
此方法将使用 MIME 类型和扩展名之间的本地映射。
public static string|null getExtensionByMimeType ( $mimeType, $preferShort = false, $magicFile = null ) | ||
$mimeType | 字符串 |
文件 MIME 类型。 |
$preferShort | 布尔值 |
返回最多 3 个字符的扩展名。 |
$magicFile | string|null |
包含所有可用 MIME 类型信息的文件的路径(或别名)。如果未设置此值,将使用 $mimeMagicFile 指定的文件。 |
返回 | string|null |
与指定 MIME 类型对应的扩展名 |
---|
public static function getExtensionByMimeType($mimeType, $preferShort = false, $magicFile = null)
{
$aliases = static::loadMimeAliases(static::$mimeAliasesFile);
if (isset($aliases[$mimeType])) {
$mimeType = $aliases[$mimeType];
}
$mimeExtensions = static::loadMimeExtensions($magicFile);
if (!array_key_exists($mimeType, $mimeExtensions)) {
return null;
}
$extensions = $mimeExtensions[$mimeType];
if (is_array($extensions)) {
if ($preferShort) {
foreach ($extensions as $extension) {
if (mb_strlen($extension, 'UTF-8') <= 3) {
return $extension;
}
}
}
return $extensions[0];
} else {
return $extensions;
}
}
定义于: yii\helpers\BaseFileHelper::getExtensionsByMimeType()
根据给定的 MIME 类型确定扩展名。
此方法将使用扩展名和 MIME 类型之间的本地映射。
public static array getExtensionsByMimeType ( $mimeType, $magicFile = null ) | ||
$mimeType | 字符串 |
文件 MIME 类型。 |
$magicFile | string|null |
包含所有可用 MIME 类型信息的文件的路径(或别名)。如果未设置此值,将使用 $mimeMagicFile 指定的文件。 |
返回 | 数组 |
与指定 MIME 类型对应的扩展名 |
---|
public static function getExtensionsByMimeType($mimeType, $magicFile = null)
{
$aliases = static::loadMimeAliases(static::$mimeAliasesFile);
if (isset($aliases[$mimeType])) {
$mimeType = $aliases[$mimeType];
}
// Note: For backwards compatibility the "MimeTypes" file is used.
$mimeTypes = static::loadMimeTypes($magicFile);
return array_keys($mimeTypes, mb_strtolower($mimeType, 'UTF-8'), true);
}
定义于: yii\helpers\BaseFileHelper::getMimeType()
确定指定文件的 MIME 类型。
此方法将首先尝试根据 finfo_open 确定 MIME 类型。如果未安装 fileinfo
扩展,则当 $checkExtension
为 true 时,它将回退到 getMimeTypeByExtension()。
public static string|null getMimeType ( $file, $magicFile = null, $checkExtension = true ) | ||
$file | 字符串 |
文件名。 |
$magicFile | string|null |
可选的 magic 数据库文件的名称(或别名),通常类似于 |
$checkExtension | 布尔值 |
是否使用文件扩展名来确定 MIME 类型,以防 |
返回 | string|null |
MIME 类型(例如 |
---|---|---|
抛出 | yii\base\InvalidConfigException |
当未安装 |
public static function getMimeType($file, $magicFile = null, $checkExtension = true)
{
if ($magicFile !== null) {
$magicFile = Yii::getAlias($magicFile);
}
if (!extension_loaded('fileinfo')) {
if ($checkExtension) {
return static::getMimeTypeByExtension($file, $magicFile);
}
throw new InvalidConfigException('The fileinfo PHP extension is not installed.');
}
$info = finfo_open(FILEINFO_MIME_TYPE, $magicFile);
if ($info) {
$result = finfo_file($info, $file);
finfo_close($info);
if ($result !== false) {
return $result;
}
}
return $checkExtension ? static::getMimeTypeByExtension($file, $magicFile) : null;
}
定义于: yii\helpers\BaseFileHelper::getMimeTypeByExtension()
根据指定文件的扩展名确定 MIME 类型。
此方法将使用扩展名和 MIME 类型之间的本地映射。
public static string|null getMimeTypeByExtension ( $file, $magicFile = null ) | ||
$file | 字符串 |
文件名。 |
$magicFile | string|null |
包含所有可用 MIME 类型信息的文件的路径(或别名)。如果未设置此值,将使用 $mimeMagicFile 指定的文件。 |
返回 | string|null |
MIME 类型。如果无法确定 MIME 类型,则返回 null。 |
---|
public static function getMimeTypeByExtension($file, $magicFile = null)
{
$mimeTypes = static::loadMimeTypes($magicFile);
if (($ext = pathinfo($file, PATHINFO_EXTENSION)) !== '') {
$ext = strtolower($ext);
if (isset($mimeTypes[$ext])) {
return $mimeTypes[$ext];
}
}
return null;
}
定义于: yii\helpers\BaseFileHelper::loadMimeAliases()
从指定文件加载 MIME 别名。
protected static array loadMimeAliases ( $aliasesFile ) | ||
$aliasesFile | string|null |
包含 MIME 类型别名的文件的路径(或别名)。如果未设置,将使用由 $mimeAliasesFile 指定的文件。 |
返回 | 数组 |
从文件扩展名到 MIME 类型的映射 |
---|
protected static function loadMimeAliases($aliasesFile)
{
if ($aliasesFile === null) {
$aliasesFile = static::$mimeAliasesFile;
}
$aliasesFile = Yii::getAlias($aliasesFile);
if (!isset(self::$_mimeAliases[$aliasesFile])) {
self::$_mimeAliases[$aliasesFile] = require $aliasesFile;
}
return self::$_mimeAliases[$aliasesFile];
}
定义于: yii\helpers\BaseFileHelper::loadMimeExtensions()
从指定文件加载 MIME 扩展名。
protected static array loadMimeExtensions ( $extensionsFile ) | ||
$extensionsFile | string|null |
包含 MIME 类型别名的文件的路径(或别名)。如果未设置,将使用由 $mimeAliasesFile 指定的文件。 |
返回 | 数组 |
从文件扩展名到 MIME 类型的映射 |
---|
protected static function loadMimeExtensions($extensionsFile)
{
if ($extensionsFile === null) {
$extensionsFile = static::$mimeExtensionsFile;
}
$extensionsFile = Yii::getAlias($extensionsFile);
if (!isset(self::$_mimeExtensions[$extensionsFile])) {
self::$_mimeExtensions[$extensionsFile] = require $extensionsFile;
}
return self::$_mimeExtensions[$extensionsFile];
}
定义于: yii\helpers\BaseFileHelper::loadMimeTypes()
从指定文件加载 MIME 类型。
protected static array loadMimeTypes ( $magicFile ) | ||
$magicFile | string|null |
包含所有可用 MIME 类型信息的文件的路径(或别名)。如果未设置此值,将使用 $mimeMagicFile 指定的文件。 |
返回 | 数组 |
从文件扩展名到 MIME 类型的映射 |
---|
protected static function loadMimeTypes($magicFile)
{
if ($magicFile === null) {
$magicFile = static::$mimeMagicFile;
}
$magicFile = Yii::getAlias($magicFile);
if (!isset(self::$_mimeTypes[$magicFile])) {
self::$_mimeTypes[$magicFile] = require $magicFile;
}
return self::$_mimeTypes[$magicFile];
}
定义于: yii\helpers\BaseFileHelper::localize()
返回指定文件的本地化版本。
搜索基于指定的语言代码。特别是,将查找与语言代码相同的子目录下的同名文件。例如,给定文件 "path/to/view.php" 和语言代码 "zh-CN",将查找本地化文件为 "path/to/zh-CN/view.php"。如果找不到该文件,它将尝试回退到仅使用语言代码 "zh",即 "path/to/zh/view.php"。如果仍未找到,将返回原始文件。
如果目标语言代码和源语言代码相同,将返回原始文件。
public static string localize ( $file, $language = null, $sourceLanguage = null ) | ||
$file | 字符串 |
原始文件 |
$language | string|null |
应将文件本地化为的目标语言。如果未设置,将使用 yii\base\Application::$language 的值。 |
$sourceLanguage | string|null |
原始文件所在的语言。如果未设置,将使用 yii\base\Application::$sourceLanguage 的值。 |
返回 | 字符串 |
匹配的本地化文件,或者如果找不到本地化版本,则返回原始文件。如果目标语言代码和源语言代码相同,将返回原始文件。 |
---|
public static function localize($file, $language = null, $sourceLanguage = null)
{
if ($language === null) {
$language = Yii::$app->language;
}
if ($sourceLanguage === null) {
$sourceLanguage = Yii::$app->sourceLanguage;
}
if ($language === $sourceLanguage) {
return $file;
}
$desiredFile = dirname($file) . DIRECTORY_SEPARATOR . $language . DIRECTORY_SEPARATOR . basename($file);
if (is_file($desiredFile)) {
return $desiredFile;
}
$language = substr($language, 0, 2);
if ($language === $sourceLanguage) {
return $file;
}
$desiredFile = dirname($file) . DIRECTORY_SEPARATOR . $language . DIRECTORY_SEPARATOR . basename($file);
return is_file($desiredFile) ? $desiredFile : $file;
}
protected static array normalizeOptions ( array $options ) | ||
$options | 数组 |
原始选项 |
返回 | 数组 |
规范化后的选项 |
---|
protected static function normalizeOptions(array $options)
{
if (!array_key_exists('caseSensitive', $options)) {
$options['caseSensitive'] = true;
}
if (isset($options['except'])) {
foreach ($options['except'] as $key => $value) {
if (is_string($value)) {
$options['except'][$key] = self::parseExcludePattern($value, $options['caseSensitive']);
}
}
}
if (isset($options['only'])) {
foreach ($options['only'] as $key => $value) {
if (is_string($value)) {
$options['only'][$key] = self::parseExcludePattern($value, $options['caseSensitive']);
}
}
}
return $options;
}
定义于: yii\helpers\BaseFileHelper::normalizePath()
规范化文件/目录路径。
规范化执行以下操作
- 将所有目录分隔符转换为
DIRECTORY_SEPARATOR
(例如 "\a/b\c" 变为 "/a/b/c") - 删除尾部的目录分隔符(例如 "/a/b/c/" 变为 "/a/b/c")
- 将多个连续的斜杠转换为一个斜杠(例如 "/a///b/c" 变为 "/a/b/c")
- 根据其含义删除 ".." 和 "."(例如 "/a/./b/../c" 变为 "/a/c")
注意:对于注册的流包装器,将跳过连续的斜杠规则和 ".." / "." 转换。
public static string normalizePath ( $path, $ds = DIRECTORY_SEPARATOR ) | ||
$path | 字符串 |
要规范化的文件/目录路径 |
$ds | 字符串 |
在规范化结果中要使用的目录分隔符。默认为 |
返回 | 字符串 |
规范化的文件/目录路径 |
---|
public static function normalizePath($path, $ds = DIRECTORY_SEPARATOR)
{
$path = rtrim(strtr($path, '/\\', $ds . $ds), $ds);
if (strpos($ds . $path, "{$ds}.") === false && strpos($path, "{$ds}{$ds}") === false) {
return $path;
}
// fix #17235 stream wrappers
foreach (stream_get_wrappers() as $protocol) {
if (strpos($path, "{$protocol}://") === 0) {
return $path;
}
}
// the path may contain ".", ".." or double slashes, need to clean them up
if (strpos($path, "{$ds}{$ds}") === 0 && $ds == '\\') {
$parts = [$ds];
} else {
$parts = [];
}
foreach (explode($ds, $path) as $part) {
if ($part === '..' && !empty($parts) && end($parts) !== '..') {
array_pop($parts);
} elseif ($part === '.' || $part === '' && !empty($parts)) {
continue;
} else {
$parts[] = $part;
}
}
$path = implode($ds, $parts);
return $path === '' ? '.' : $path;
}
定义于: yii\helpers\BaseFileHelper::removeDirectory()
递归地删除目录(及其所有内容)。
public static void removeDirectory ( $dir, $options = [] ) | ||
$dir | 字符串 |
要递归删除的目录。 |
$options | 数组 |
目录删除选项。有效选项为
|
抛出 | yii\base\ErrorException |
如果失败 |
---|
public static function removeDirectory($dir, $options = [])
{
if (!is_dir($dir)) {
return;
}
if (!empty($options['traverseSymlinks']) || !is_link($dir)) {
if (!($handle = opendir($dir))) {
return;
}
while (($file = readdir($handle)) !== false) {
if ($file === '.' || $file === '..') {
continue;
}
$path = $dir . DIRECTORY_SEPARATOR . $file;
if (is_dir($path)) {
static::removeDirectory($path, $options);
} else {
static::unlink($path);
}
}
closedir($handle);
}
if (is_link($dir)) {
static::unlink($dir);
} else {
rmdir($dir);
}
}
定义于: yii\helpers\BaseFileHelper::unlink()
以跨平台方式删除文件或符号链接
public static boolean unlink ( $path ) | ||
$path | 字符串 |
public static function unlink($path)
{
$isWindows = DIRECTORY_SEPARATOR === '\\';
if (!$isWindows) {
return unlink($path);
}
if (is_link($path) && is_dir($path)) {
return rmdir($path);
}
try {
return unlink($path);
} catch (ErrorException $e) {
// last resort measure for Windows
if (is_dir($path) && count(static::findFiles($path)) !== 0) {
return false;
}
if (function_exists('exec') && file_exists($path)) {
exec('DEL /F/Q ' . escapeshellarg($path));
return !file_exists($path);
}
return false;
}
}
注册 或 登录 以发表评论。