for example: how to rename C:\Program Files\Music_Files to C:\Program Files\MusicFiles
A:
Why not use the .Net libraries, since IronPython can access them?
System.IO.Directory should have a Move method that you can use.
sukru
2010-07-28 21:28:36
thanks sukru, i'll try that
hocsinh
2010-07-29 14:50:28
+2
A:
And if you want to do it the python way:
import os
os.rename("c:\\Program Files\\Music_Files", "c:\\Program Files\\MusicFiles")
sblom
2010-07-29 16:39:48