Be gorgeous, use python.
Code :
- PATH = '.'
- EXTENSION = '.txt'
- PREFIXE = 'toto'
- #-- Generic modules
- import os
- import os.path
- #--- rename machine ---#
- class RenameMachine:
- def __init__( self ):
- #-- we choose the .txt files in the current directory and rename them
- list = os.listdir( PATH )
- for entry in list:
- if os.path.isfile( entry ) and os.path.splitext( entry )[1] == EXTENSION :
- os.rename( entry , PREFIXE + entry )
- if __name__ == '__main__' :
- rm = RenameMachine()
|
Pour que ça marche sous windows, tu installes python et tu fais executer un fichier avec ce bout de code par l'exe python.
python rename.py si t'as appelé ton fichier avec le code rename.py
Message édité par chaica le 17-04-2004 à 04:06:30