Python 程序设计入门(025)—— 使用 os 模块操作文件与目录
import os
# 创建一个新目录
os.mkdir('new_directory')
# 删除一个目录
os.rmdir('new_directory')
# 获取当前工作目录
current_directory = os.getcwd()
print(f"当前工作目录: {current_directory}")
# 改变当前工作目录
os.chdir('../')
new_directory = os.getcwd()
print(f"新的工作目录: {new_directory}")
# 获取目录列表
directory_list = os.listdir('.')
print(f"当前目录下的文件和文件夹: {directory_list}")
# 检查路径是否存在
exists = os.path.exists('my_file.txt')
print(f"文件或目录存在: {exists}")
# 检查路径是文件还是目录
path = 'my_file.txt'
is_file = os.path.isfile(path)
is_dir = os.path.isdir(path)
print(f"{path} 是文件: {is_file}, 是目录: {is_dir}")
# 获取文件或目录的大小
size = os.path.getsize('my_file.txt')
print(f"文件大小: {size} 字节")
# 分割路径
dir_name, file_name = os.path.split('/path/to/file')
print(f"目录名: {dir_name}, 文件名: {file_name}")
这段代码展示了如何使用Python的os
模块来进行文件和目录的基本操作,包括创建和删除目录、改变当前工作目录、获取目录列表、检查路径存在性、检查路径类型以及获取文件大小和分割路径等功能。
评论已关闭