FileNotFoundError: [WinError 2] The system cannot find the file specified:

后端 未结 3 368
北荒
北荒 2021-01-02 07:52
import os

def rename(directory):
    for name in os.listdir(directory):
        print(name)
        os.rename(name,\"0\"+name)


path = input(\"Enter the file path\         


        
3条回答
  •  礼貌的吻别
    2021-01-02 08:06

    You cannot use absolute path unless your terminal is in that directory. Hence you can do as following:

    def rename(directory):
        os.chdir(directory) # Changing to the directory you specified.
        for name in os.listdir(directory):
            print(name)
            os.rename(name,"0"+name)
    

提交回复
热议问题