Help me n tell me.
How 2 set auto delet file in directory in x minut
Collapse
X
-
try thatPHP Code:$path = dirname(__FILE__).'/files';
if ($handle = opendir($path)) {
while (false !== ($file = readdir($handle))) {
if ((time()-filectime($path.'/'.$file)) < 86400) { // auto-deletion every 24 hours
if (strripos($file, '.txt') !== false) { //deletes particular file extension
unlink($path.'/'.$file);
}
}
}
}
-
where i put dis?Originally posted by amylee View Posttry thatPHP Code:$path = dirname(__FILE__).'/files';
if ($handle = opendir($path)) {
while (false !== ($file = readdir($handle))) {
if ((time()-filectime($path.'/'.$file)) < 86400) { // auto-deletion every 24 hours
if (strripos($file, '.txt') !== false) { //deletes particular file extension
unlink($path.'/'.$file);
}
}
}
}
Comment
-
i want delet my mp3 files in subderectory how to set dis script?Originally posted by amylee View Postyou asked how to do it and that's how its done
you havn't said what type of script you are using, what files you want removing
how do you expect anyone to help without any information
i have shown you a way to do it now try figuring it out
Comment
-
if you are deleting files that are not in the same directory as the script on some servers you will need to use chdir() eg:
if i can show you an approved code i edit it,PHP Code:$old = getcwd();
chdir("images");
unlink("something.else");
chdir($old);
you dont need loads of posts from me :PLast edited by something else; 25.03.12, 00:32.
Comment
your favorit kind' of user :D enjoy !

And i haven't at least enjoy it. I was serious.
Comment