Profile image for Yan Wu teloon
walk dirs(the cdrom), and save the file names
Language
Python
Tags
listdir
Favorited By
Profile image for Carly Ho

ir walk and string jion

1 # coding : utf-8 2 3 import os 4 5 export = [] 6 for root, dirs, files in os.walk('/media/cdrom0'): 7 export.append("\n %s;%s;%s" % (root,dirs,files)) 8 open('mycd2.cdc', 'w').write(''.join(export))

Comments