/    Sign up×
Community /Pin to ProfileBookmark

[RESOLVED] Problem about rmdir function

Hi. Im using the rmdir function but it gives an error and says that the directory is not empty. How can i remove a directory that is not empty?

to post a comment
PHP

2 Comments(s)

Copy linkTweet thisAlerts:
@NogDogAug 02.2006 — [code=php]
<?php
function remove_dir($dir)
{
if(is_dir($dir))
{
if(is_writeable($dir))
{
$files = glob("$dir/*");
foreach($files as $file)
{
if(is_dir($file))
{
if(!remove_dir($file)) // recursion fun!
{
return(FALSE);
}
}
else
{
if(is_writeable($file))
{
if(!unlink($file))
{
user_error("Unable to delete $file", E_USER_WARNING);
return(FALSE);
}
}
else
{
user_error("$file is not writeable", E_USER_WARNING);
return(FALSE);
}
}
}
if(!rmdir($dir))
{
user_error("Unable to delete directory $dir", E_USER_WARNING);
return(FALSE);
}
}
else
{
user_error("$dir is not writeable", E_USER_WARNING);
}
}
else
{
user_error("$dir is not a directory", E_USER_WARNING);
return(FALSE);
}
return(TRUE);
}
[/code]
Copy linkTweet thisAlerts:
@Sleep_ModeauthorAug 03.2006 — That works! Thank youuu! ?
×

Success!

Help @Sleep_Mode spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.18,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...