返回介绍

copy_dir()

发布于 2017-09-10 21:56:27 字数 4107 浏览 1352 评论 0 收藏 0

copy_dir( string $from,  string $to,  array $skip_list = array() )

Copies a directory from one location to another via the WordPress Filesystem Abstraction.


description

Assumes that WP_Filesystem() has already been called and setup.


参数

$from

(string) (Required) 源代码 directory

$to

(string) (Required) destination directory

$skip_list

(array) (Optional) a list of files/folders to skip copying

Default value: array()


返回值

(mixed) WP_Error on failure, True on success.


源代码

File: wp-admin/includes/file.php

function copy_dir($from, $to, $skip_list = array() ) {
	global $wp_filesystem;

	$dirlist = $wp_filesystem->dirlist($from);

	$from = trailingslashit($from);
	$to = trailingslashit($to);

	foreach ( (array) $dirlist as $filename => $fileinfo ) {
		if ( in_array( $filename, $skip_list ) )
			continue;

		if ( 'f' == $fileinfo['type'] ) {
			if ( ! $wp_filesystem->copy($from . $filename, $to . $filename, true, FS_CHMOD_FILE) ) {
				// If copy failed, chmod file to 0644 and try again.
				$wp_filesystem->chmod( $to . $filename, FS_CHMOD_FILE );
				if ( ! $wp_filesystem->copy($from . $filename, $to . $filename, true, FS_CHMOD_FILE) )
					return new WP_Error( 'copy_failed_copy_dir', __( 'Could not copy file.' ), $to . $filename );
			}
		} elseif ( 'd' == $fileinfo['type'] ) {
			if ( !$wp_filesystem->is_dir($to . $filename) ) {
				if ( !$wp_filesystem->mkdir($to . $filename, FS_CHMOD_DIR) )
					return new WP_Error( 'mkdir_failed_copy_dir', __( 'Could not create directory.' ), $to . $filename );
			}

			// generate the $sub_skip_list for the subdirectory as a sub-set of the existing $skip_list
			$sub_skip_list = array();
			foreach ( $skip_list as $skip_item ) {
				if ( 0 === strpos( $skip_item, $filename . '/' ) )
					$sub_skip_list[] = preg_replace( '!^' . preg_quote( $filename, '!' ) . '/!i', '', $skip_item );
			}

			$result = copy_dir($from . $filename, $to . $filename, $sub_skip_list);
			if ( is_wp_error($result) )
				return $result;
		}
	}
	return true;
}

更新日志

Versiondescription
2.5.0Introduced.

相关函数

Uses

  • wp-admin/includes/file.php: copy_dir()
  • wp-includes/l10n.php: __()
  • wp-includes/formatting.php: trailingslashit()
  • wp-includes/load.php: is_wp_error()
  • wp-includes/class-wp-error.php: WP_Error::__construct()

Used By

  • wp-admin/includes/class-wp-upgrader.php: WP_Upgrader::install_package()
  • wp-admin/includes/update-core.php: update_core()
  • wp-admin/includes/file.php: copy_dir()

User Contributed Notes

  1. Skip to note content You must log in to vote on the helpfulness of this noteVote results for this note: 0You must log in to vote on the helpfulness of this note Contributed by J.D. Grimes
    
    // Connecting to the filesystem.
    if ( ! WP_Filesystem() ) {
    	// Unable to connect to the filesystem, FTP credentials may be required or something.
    	// You can request these with request_filesystem_credentials()
    	exit;
    }
    
    // Don't forget that the target directory needs to exist.
    // If it doesn't already, you'll need to create it.
    global $wp_filesystem;
    $wp_filesystem->mkdir( $target_dir );
    
    // Now copy all the files in the 源代码 directory to the target directory.
    copy_dir( $src_dir, $target_dir );
    

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文