tags:

views:

20

answers:

2

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
thanks sukru, i'll try that
hocsinh
+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