How 2 set auto delet file in directory in x minut

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How 2 set auto delet file in directory in x minut

    Help me n tell me.

    #2
    PHP 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);
              }
            }
        }
      } 
    try that

    Comment


      #3
      Originally posted by amylee View Post
      PHP 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);
                }
              }
          }
        } 
      try that
      where i put dis?

      Comment


        #4
        you 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


          #5
          Originally posted by amylee View Post
          you 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
          i want delet my mp3 files in subderectory how to set dis script?

          Comment


            #6
            Originally posted by PranaY4U View Post
            where i put dis?
            Originally posted by PranaY4U View Post
            i want delet my mp3 files in subderectory how to set dis script?
            In the script.
            <!DOCTYPE html PUBLIC "-//WAPFORUM.RS

            Comment


              #7
              Originally posted by arnage View Post
              In the script.
              head shot ! your favorit kind' of user :D enjoy !
              This is ten percent luck, twenty percent skill
              Fifteen percent concentrated power of will
              Five percent pleasure, fifty percent pain

              And a hundred percent reason to remember the name!

              Comment


                #8
                God no, it isn't. And i haven't at least enjoy it. I was serious.
                <!DOCTYPE html PUBLIC "-//WAPFORUM.RS

                Comment


                  #9
                  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:
                  PHP Code:
                  $old getcwd();
                  chdir("images");
                  unlink("something.else");
                  chdir($old); 
                  if i can show you an approved code i edit it,
                  you dont need loads of posts from me :P
                  Last edited by something else; 25.03.12, 00:32.

                  Comment

                  Working...
                  X