试试这个,使用 mkdir:
if (!file_exists('path/to/directory')) {
mkdir('path/to/directory', 0777, true);
}
请注意,0777
已经是目录的默认模式,并且可能仍会被当前的 umask 修改。
这是缺少的部分。您需要在 mkdir 调用中将“递归”标志作为第三个参数(布尔值 true)传递,如下所示:
mkdir('path/to/directory', 0755, true);
true
这是一些更普遍的东西,因为它出现在谷歌上。虽然细节更具体,但这个问题的标题更普遍。
/**
* recursively create a long directory path
*/
function createPath($path) {
if (is_dir($path))
return true;
$prev_path = substr($path, 0, strrpos($path, '/', -2) + 1 );
$return = createPath($prev_path);
return ($return && is_writable($prev_path)) ? mkdir($path) : false;
}
这将采用一条路径,可能包含一长串未创建的目录,并继续向上一个目录,直到它到达现有目录。然后它将尝试在该目录中创建下一个目录,并继续创建所有目录。如果成功则返回 true。
可以通过提供停止级别来改进它,因此如果超出用户文件夹或其他内容并包含权限,它就会失败。
使用这样的辅助函数:
function makeDir($path)
{
$ret = mkdir($path); // use @mkdir if you want to suppress warnings/errors
return $ret === true || is_dir($path);
}
如果目录已成功创建或已存在,它将返回 true
,如果无法创建目录,则返回 false
。
一个更好的选择是这样的(不应该给出任何警告):
function makeDir($path)
{
return is_dir($path) || mkdir($path);
}
@
并用正确的 is_dir
检查替换它,我的赞成票就是您的 :) 检查父目录 is_writable()
是否具有防水辅助功能的奖励积分。
创建文件夹的更快方法:
if (!is_dir('path/to/directory')) {
mkdir('path/to/directory', 0777, true);
}
递归创建目录路径:
function makedirs($dirpath, $mode=0777) {
return is_dir($dirpath) || mkdir($dirpath, $mode, true);
}
受 Python 的 os.makedirs()
启发
最好的方法是使用 wp_mkdir_p
函数。此函数将递归创建一个具有正确权限的文件夹。
此外,您可以跳过文件夹存在条件,因为该函数返回:
当目录被创建或之前存在时为真
如果您无法创建目录,则返回 false。
例子:
$path = 'path/to/directory';
if ( wp_mkdir_p( $path ) ) {
// Directory exists or was created.
}
更多:https://developer.wordpress.org/reference/functions/wp_mkdir_p/
wp_mkdir_p()
也会返回 true,因此您不需要任何额外的 file_exists()
检查。此外,它会尽力设置适当的目录权限。我总是使用这个功能而不是重新发明轮子。
在 WordPress 中,还有一个非常方便的函数 wp_mkdir_p,它将递归地创建一个目录结构。
参考来源:
function wp_mkdir_p( $target ) {
$wrapper = null;
// Strip the protocol
if( wp_is_stream( $target ) ) {
list( $wrapper, $target ) = explode( '://', $target, 2 );
}
// From php.net/mkdir user contributed notes
$target = str_replace( '//', '/', $target );
// Put the wrapper back on the target
if( $wrapper !== null ) {
$target = $wrapper . '://' . $target;
}
// Safe mode fails with a trailing slash under certain PHP versions.
$target = rtrim($target, '/'); // Use rtrim() instead of untrailingslashit to avoid formatting.php dependency.
if ( empty($target) )
$target = '/';
if ( file_exists( $target ) )
return @is_dir( $target );
// We need to find the permissions of the parent folder that exists and inherit that.
$target_parent = dirname( $target );
while ( '.' != $target_parent && ! is_dir( $target_parent ) ) {
$target_parent = dirname( $target_parent );
}
// Get the permission bits.
if ( $stat = @stat( $target_parent ) ) {
$dir_perms = $stat['mode'] & 0007777;
} else {
$dir_perms = 0777;
}
if ( @mkdir( $target, $dir_perms, true ) ) {
// If a umask is set that modifies $dir_perms, we'll have to re-set the $dir_perms correctly with chmod()
if ( $dir_perms != ( $dir_perms & ~umask() ) ) {
$folder_parts = explode( '/', substr( $target, strlen( $target_parent ) + 1 ) );
for ( $i = 1; $i <= count( $folder_parts ); $i++ ) {
@chmod( $target_parent . '/' . implode( '/', array_slice( $folder_parts, 0, $i ) ), $dir_perms );
}
}
return true;
}
return false;
}
对于登录站点,我需要同样的东西。我需要创建一个包含两个变量的目录。
$directory 是我想用用户许可证号创建另一个子文件夹的主文件夹。
include_once("../include/session.php");
$lnum = $session->lnum; // Users license number from sessions
$directory = uploaded_labels; // Name of directory that folder is being created in
if (!file_exists($directory . "/" . $lnum)) {
mkdir($directory . "/" . $lnum, 0777, true);
}
这是没有错误抑制的最新解决方案:
if (!is_dir('path/to/directory')) {
mkdir('path/to/directory');
}
对于您关于 WordPress 的具体问题,请使用以下代码:
if (!is_dir(ABSPATH . 'wp-content/uploads')) wp_mkdir_p(ABSPATH . 'wp-content/uploads');
函数参考:WordPress wp_mkdir_p。 ABSPATH 是返回 WordPress 工作目录路径的常量。
还有另一个名为 wp_upload_dir()
的 WordPress 函数。它返回上传目录路径并创建一个文件夹(如果尚不存在)。
$upload_path = wp_upload_dir();
以下代码一般适用于 PHP。
if (!is_dir('path/to/directory')) mkdir('path/to/directory', 0777, true);
函数参考:PHP is_dir()
$upload = wp_upload_dir();
$upload_dir = $upload['basedir'];
$upload_dir = $upload_dir . '/newfolder';
if (! is_dir($upload_dir)) {
mkdir( $upload_dir, 0700 );
}
如果您想避免 file_exists
与 is_dir
的问题,我建议您查看 here。
我试过了,如果目录不存在,它只会创建目录。它不关心是否存在具有该名称的文件。
/* Creates the directory if it does not exist */
$path_to_directory = 'path/to/directory';
if (!file_exists($path_to_directory) && !is_dir($path_to_directory)) {
mkdir($path_to_directory, 0777, true);
}
如果文件夹不存在,则创建文件夹
考虑到问题的环境。
WordPress。
虚拟主机服务器。
假设它是 Linux,而不是运行 PHP 的 Windows。
并引用自:mkdir
bool mkdir ( string $pathname [, int $mode = 0777 [, bool $recursive = FALSE [, resource $context ]]] )
手册说唯一需要的参数是 $pathname
!
所以,我们可以简单地编码:
<?php
error_reporting(0);
if(!mkdir('wp-content/uploads')){
// Todo
}
?>
解释:
除非需要,我们不必传递任何参数或检查文件夹是否存在甚至传递模式参数;原因如下:
该命令将创建具有 0755 权限(共享主机文件夹的默认权限)或 0777(该命令的默认权限)的文件夹。
模式在运行 PHP 的 Windows 主机上被忽略。
mkdir 命令已经有一个内置的检查器来检查文件夹是否存在;所以我们只需要检查返回 True|False ;这不是错误;这只是一个警告,默认情况下在托管服务器上禁用警告。
根据速度,如果禁用警告,这会更快。
这只是另一种研究问题的方式,而不是要求更好或最优化的解决方案。
它在 PHP 7、生产服务器和 Linux 上进行了测试
if (!is_dir('path_directory')) {
@mkdir('path_directory');
}
干得好。
if (!is_dir('path/to/directory')) {
if (!mkdir('path/to/directory', 0777, true) && !is_dir('path/to/directory')) {
throw new \RuntimeException(sprintf('Directory "%s" was not created', 'path/to/directory'));
}
}
你也可以试试:
$dirpath = "path/to/dir";
$mode = "0764";
is_dir($dirpath) || mkdir($dirpath, $mode, true);
作为对当前解决方案的补充,实用功能。
function createDir($path, $mode = 0777, $recursive = true) {
if(file_exists($path)) return true;
return mkdir($path, $mode, $recursive);
}
createDir('path/to/directory');
如果已存在或成功创建,则返回 true
。否则返回false。
我们应该总是模块化我们的代码,我在下面写了同样的检查......
我们首先检查目录。如果目录不存在,我们创建目录。
$boolDirPresents = $this->CheckDir($DirectoryName);
if (!$boolDirPresents) {
$boolCreateDirectory = $this->CreateDirectory($DirectoryName);
if ($boolCreateDirectory) {
echo "Created successfully";
}
}
function CheckDir($DirName) {
if (file_exists($DirName)) {
echo "Dir Exists<br>";
return true;
} else {
echo "Dir Not Absent<br>";
return false;
}
}
function CreateDirectory($DirName) {
if (mkdir($DirName, 0777)) {
return true;
} else {
return false;
}
}
您首先需要检查目录是否存在 file_exists('path_to_directory')
然后使用 mkdir(path_to_directory)
创建目录
mkdir( string $pathname [, int $mode = 0777 [, bool $recursive = FALSE [, resource $context ]]] ) : bool
关于mkdir() here的更多信息
完整代码在这里:
$structure = './depth1/depth2/depth3/';
if (!file_exists($structure)) {
mkdir($structure);
}
file_exists
- 检查文件或目录是否存在is_file
- 判断文件名是否为常规文件is_dir
- 判断文件名是否为目录