Rmdir Permission denied error in windows

Source: Internet
Author: User
    function delFile($delList, $deleteRootToo){
if(is_dir($delList)){
@chmod($delList, 0777);
if(!$dh = @opendir($delList)){
return false;
}
while (false !== ($file = readdir($dh))) {
if($file == '.' || $file == '..') continue;
if(is_file($delList.'/'.$file)){
@unlink($delList.'/'.$file);
}else{
$this->delFile($delList.'/'.$file, $deleteRootToo);
}
if($deleteRootToo) rmdir($delList);
}
}else if(is_file($delList)){
@unlink($delList);
}else{
return false;
}
closedir($dh);
return true;
}

Today, I wrote a file operation class. One of the functions that delete files and folders reports an error each time. After checking, I only need to set rmdir ($ delList). This is normal after the file handle is closed.

Correct function:

 

    function delFile($delList, $deleteRootToo){
if(is_dir($delList)){
@chmod($delList, 0777);
if(!$dh = @opendir($delList)){
return false;
}
while (false !== ($file = readdir($dh))) {
if($file == '.' || $file == '..') continue;
if(is_file($delList.'/'.$file)){
@unlink($delList.'/'.$file);
}else{
$this->delFile($delList.'/'.$file, $deleteRootToo);
}
}
}else if(is_file($delList)){
@unlink($delList);
}else{
return false;
}
closedir($dh);
if($deleteRootToo) rmdir($delList);
return true;
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.