Home Python的一些常用操作
Post
Cancel

Python的一些常用操作

Python删除文件

使用python删除一个文件或文件夹,需要使用os模块。

1
2
3
4
5
6
7
8
import os
path = 'F:/新建文本文档.txt'  # 文件路径
if os.path.exists(path):  # 如果文件存在
    # 删除文件,可使用以下两种方法。
    os.remove(path)  
    #os.unlink(path)
else:
    print('no such file:%s'%my_file)  # 则返回文件不存在

Python创建文件并写入

1
2
3
new_page = FILE_PATH + "\test.txt"
    with open(new_page, 'w+') as file:
        file.write("test\n")

Python获取文件修改时间

1
2
mtime = os.stat(file).st_mtime
file_modify_time = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(mtime))
This post is licensed under CC BY 4.0 by the author.