码迷,mamicode.com
首页 > 编程语言 > 详细

Python 文件处理命令

时间:2018-07-13 01:27:15      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:文件   删除   rename   getcwd   参数   file   删除一个文件   hello   code   

 1 import os
 2 
 3 # a. 文件重命名:
 4 os.rename("xxxx.txt","test.txt")    # 两个参数,前者为原文件名,后者为要换成的文件名
 5 
 6 # b. 删除文件
 7 os.remove("test.txt")               # 参数为要删除的文件名
 8 
 9 # c. 创建一个文件夹
10 os.mkdir("hello")           # 创建一个hello文件夹
11 
12 # d. 获取当前路径
13 path = os.getcwd()
14 print(path)
15 
16 # e. 修改默认路径
17 os.chdir("hello")           # 进入hello文件夹
18 
19 # f 获取目录列表
20 os.listdir(".")             # 当前路径列表
21 
22 # j 删除一个文件夹
23 os.rmdir("hello")           # 删除hello文件夹
24 
25 # h 删除文件
26 os.remove("file.txt")       # 删除file.txt文件

 

Python 文件处理命令

标签:文件   删除   rename   getcwd   参数   file   删除一个文件   hello   code   

原文地址:https://www.cnblogs.com/Hunter-541695/p/9302435.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!