Changes between Initial Version and Version 1 of FileServer/listing/rename.py


Ignore:
Timestamp:
05/27/2011 11:12:29 AM (15 years ago)
Author:
pangchongyang
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FileServer/listing/rename.py

    v1 v1  
     1{{{ 
     2#!py 
     3 
     4 
     5#!/usr/bin/env python 
     6 
     7# for more detail, see http://docs.python.org/ 
     8 
     9import os 
     10 
     11files = [] 
     12for i in os.listdir("."): 
     13    if i.endswith(".png"): 
     14        files.append(i) 
     15 
     16idx = 0 
     17for j in files: 
     18    oldFilename = j 
     19    newFilename = "%d.png" % idx 
     20    os.rename(oldFilename, newFilename) 
     21    idx += 1 
     22 
     23}}}