Jump to content

[SOLVED] Removing a Directory


MikeDXUNL

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.