$path=‘y12/aa/bb/cd/ff/aa/ee/dd‘;//mkdir($path,0777,true);exec("rd /s /q y12");

$path=‘y12/aa/bb/cd/ff/aa/ee/dd‘;function delTree($dir) {$files = array_diff(scandir($dir), array(‘.‘,‘..‘));foreach ($files as $file) {(is_dir("$dir/$file") && !is_link($dir)) ? delTree("$dir/$file") : unlink("$dir/$file");}return rmdir($dir);}delTree(‘y12‘);
原文:http://www.cnblogs.com/lsr111/p/4507607.html