Rename Folders

Discussion in 'PHP' started by darkblade, Apr 14, 2007.

  1. #1
    Does anyone know a script that takes in a directory with a bunch of folders in it. Organizes the folders in alphabetical order and renames them like c001, c002.
     
    darkblade, Apr 14, 2007 IP
  2. commandos

    commandos Notable Member

    Messages:
    3,648
    Likes Received:
    329
    Best Answers:
    0
    Trophy Points:
    280
    #2
    i think you will need to go step by step .

    - log to ftp using php
    - do a sort
    - loop -> bool rename ( string oldname, string newname [, resource context] )
    rename("old_name", "new_name");
     
    commandos, Apr 14, 2007 IP