Copy Folder Script (with directory opt)

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

    Copy Folder Script (with directory opt)

    Just use:
    First box for file index.
    Second box for folder to save to.
    Note:
    If ./files/ folder exists and you add ./files/Wallpapers/, the Wallpapers dir will be autocreated but if you add ./files/Wallpapers/3D/ and if Wallpapers dir doesn't then it will show error :P

    Added after 3 minutes:

    Can anybody help me to atatch file from mobile? :-(
    Last edited by mobihack; 10.06.12, 07:08.

    #2
    click on reply use manage attachment option to upload file close n sumbit reply.

    Comment


      #3
      No option for manage attachment :D

      Comment


        #4
        use
        Code:
           function makedir ($pathname ){
              if(mkdir ($pathname,0700,true)){
              return true ;
              }else{
              return false;
              }
           }
        useage
        Code:
        makedir ('dir/subdir');
        makedir ('dir/subdir/file');

        Comment

        Working...
        X