copy_dir()函数是Wordpress函数,通过WordPress文件系统抽象将目录从一个位置复制到另一个位置。
copy_dir( string $from, string $to, string[] $skip_list = array() )
说明(Description)
假设WP_Filesystem()已经被调用并设置。
参数(Parameters)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
$from | (string) | 必需 | 源目录。 |
$to | (string) | 必需 | 目标目录。 |
$skip_list | (string[]) | 可选 | 要跳过复制的文件/文件夹的数组。 |
返回(Return)
(true|WP_Error)成功时为true,失败时为WP_Error。
源码(Source)
//暂无
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
2.5.0 | wp-admin/includes/file.php:1715 | 3 | 5 |