Python 文件操作

Posted iUpoint

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 文件操作相关的知识,希望对你有一定的参考价值。

文件移动

import os
# from main import run
#import shutil
path_to_watch = r‘C:UsersAdministratorDesktop	estpath_to_watch‘
# file_path = r"C:UsersAdministratorDesktop	est	mp"
#right_path = r"C:UsersAdministratorDesktop	est
ight_path"
#wrong_path = r"C:UsersAdministratorDesktop	estwrong_path"
move_path = r"C:UsersAdministratorDesktop	estmove_path"
while 1:
    if os.listdir(path_to_watch):
        print("ppp", os.listdir(path_to_watch))
        for file in os.listdir(path_to_watch):
    #         # run(path_to_watch, right_path, wrong_path)
    #         print("file", file)
            file1 = ‘1‘.join(os.path.splitext(file)) if os.path.exists(os.path.join(move_path,file)) else file
            #或者如果存在先删掉
            os.rename(os.path.join(path_to_watch,file), os.path.join(move_path,file1))
            #os.remove(os.path.join(path_to_watch, file))

  参考资料:

os文件/目录操作方法

以上是关于Python 文件操作的主要内容,如果未能解决你的问题,请参考以下文章

学习笔记:python3,代码片段(2017)

常用python日期日志获取内容循环的代码片段

VSCode自定义代码片段——git命令操作一个完整流程

使用 Python 代码片段编写 LaTeX 文档

VSCode自定义代码片段15——git命令操作一个完整流程

VSCode自定义代码片段15——git命令操作一个完整流程