我正在写一个插件。我写了这个函数来在root中创建一个自定义目录。
function create_api_dir() {
$upload = wp_upload_dir();
//$upload_dir = $upload['basedir'];
$upload_dir = $_SERVER['DOCUMENT_ROOT'];
$upload_dir = $upload_dir . '/api';
if (! is_dir($upload_dir)) {
mkdir( $upload_dir, 0700 );
}
}
register_activation_hook( __FILE__, 'create_api_dir' );
此功能在根服务器中创建名为api
的文件夹。
现在我的插件还包含一个名为api的文件夹,里面有文件。我想允许用户将整个文件夹(解压缩)导入到该api
文件夹中,或者在插件激活时将它们上传到api文件夹。
我怎么能做到这一点?
由于
答案 0 :(得分:0)
我找到了解决方法。请告知是否可以实施。我没有复制文件夹及其子文件夹,而是压缩整个文件夹api.zip
。现在跟随线程iframe我应用了这两个功能。一个用于复制文件,另一个用于在目标中解压缩。他们是。
/*....function to copy the zip file...*/
function recurse_copy($src,$dst = 0) {
$src = plugin_dir_path( __FILE__ ) . 'api';
$dst = $_SERVER['DOCUMENT_ROOT'] . '/api';
$dir = opendir($src);
@mkdir($dst);
while(false !== ( $file = readdir($dir)) ) {
if (( $file != '.' ) && ( $file != '..' )) {
if ( is_dir($src . '/' . $file) ) {
recurse_copy($src . '/' . $file,$dst . '/' . $file);
}
else {
copy($src . '/' . $file,$dst . '/' . $file);
}
}
}
closedir($dir);
}
add_action('plugins_loaded', 'recurse_copy', 10, 2);
/*...function to unzip the file in the destination ....*/
function unzip_api(){
WP_Filesystem();
$destination = $_SERVER['DOCUMENT_ROOT'] . '/api';
$destination_path = $_SERVER['DOCUMENT_ROOT'] . '/api';
$unzipfile = unzip_file( $destination_path.'/api.zip', $destination_path);
if ( $unzipfile ) {
echo 'Successfully unzipped the file!';
} else {
echo 'There was an error unzipping the file.';
}
}
add_action('admin_init', 'unzip_api');