$path='./download/test'; //文件夹路径mkdir($path); //创建文件夹delFileUnderDir($path);mkdir($path); //删除空的文件夹//删除文件夹下的文件function delFileUnderDir( $dirName ){if ( $handle = opendir( "$dirName" ) ) {while ( false !== ( $item = readdir( $handle ) ) ) {if ( $item != "." && $item != ".." ) {if ( is_dir( "$dirName/$item" ) ) {delFileUnderDir( "$dirName/$item" );} else {if( unlink( "$dirName/$item" ) );}}}closedir( $handle );}}
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号