Solve Problems by Coding Solutions - A Complete solution for python programming
Blog Pages
▼
Python program to renaming the file or directory
# X is the original name and Y is the name to be changed import os, sys print ("The dir is: %s"%os.listdir(os.getcwd())) os.rename("X","Y") print ("Successfully renamed.") print ("the dir is: %s" %os.listdir(os.getcwd()))
No comments:
Post a Comment