在Python中,你可以使用os
模块来进行文件和文件夹的操作。下面是一些常用的文件和文件夹操作示例:
文件操作
- 打开文件:使用
open()
函数打开文件。可以指定文件名、打开模式(读取、写入、追加等),并返回一个文件对象。
file = open("example.txt", "r") # 以只读模式打开文件
- 读取文件内容:使用
read()
方法来读取文件内容。
content = file.read()
print(content)
file.close() # 记得关闭文件
- 写入文件:使用
write()
方法向文件中写入内容。
file = open("example.txt", "w") # 以写入模式打开文件
file.write("Hello, World!")
file.close()
文件夹操作
- 创建文件夹:使用
os.mkdir()
方法创建文件夹。
import os
os.mkdir("my_folder")
- 检查文件夹是否存在:使用
os.path.exists()
方法检查文件夹是否存在。
if os.path.exists("my_folder"):print("Folder exists")
else:print("Folder does not exist")
- 遍历文件夹:使用
os.listdir()
方法遍历文件夹中的文件和子文件夹。
files = os.listdir("my_folder")
for file in files:print(file)
- 删除文件夹:使用
os.rmdir()
方法删除空文件夹。如果文件夹非空,可以使用shutil.rmtree()
方法递归删除文件夹及其内容。
os.rmdir("my_folder")
Python的os
模块提供了丰富的功能,可以帮助你管理文件系统中的文件和文件夹。如果你需要更复杂的文件操作(如复制文件、移动文件等),你可以查阅Python官方文档或第三方库(如shutil
模块)来获取更多信息。