python: 路径操作的常用函数

1、子目录列表:

os.listdir(path) # 列表返回子目录

2、判断路径是否存在

os.path.exists(path) # 存在返回True, 不存在返回False

3、新建子目录:

os.mkdir(path) # 只能新建一级子目录
os.makedirs(path) # 可以创建多级目录

4、目录拼接:

os.path.join(path, sun_path)

5、使用例子:

import os

root_dir = r'src_data'
save_dir = 'dst_data'
if not os.path.exists(save_dir):
	os.mkdir(save_dir)

for image_file in os.listdir(root_dir):
	image_path = os.path.join(root_dir, image_file)
	'''
	processing
	'''
	save_path = os.path.join(save_dir, image_file)
	'''
	saveing
	'''

你可能感兴趣的:(python,python)