MikeDXUNL Posted March 24, 2009 Share Posted March 24, 2009 Well, I am trying to empty the directory before I remove it. <?php $mydir = "../photos/".$newFolder.'/'; $d = dir($mydir); while($entry = $d->read()) { if ($entry!= "." && $entry!= ".." && $entry!="Thumbs.db") { unlink($entry); } } $d->close(); rmdir($mydir); ?> Warning: unlink(header3.jpg) [function.unlink]: No such file or directory in C:\wamp\www\fitchbandadmin\admin\managephotos.php on line 87 Warning: rmdir(../photos/New FOlder/) [function.rmdir]: Directory not empty in C:\wamp\www\fitchbandadmin\admin\managephotos.php on line 91 that is the error that i get help is appreciated. Thanks, Mike Link to comment https://forums.phpfreaks.com/topic/150910-solved-removing-a-directory/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.