创建目录
os.mkdir(path_str)
列出当前文件夹中文件,存入string list中
os.listdir(path_str)
判断路径是否存在
os.path.exists(path_str)
判断路径对应的位置是文件吗?
os.path.isfile(path_str
os.path.isfile(path_str)
路径拼接
string1 = '/home'
string2 = 'fariver'
os.path.join(string1, string2)
output:
'/home/fariver'
获取当前文件夹路径
pwd = os.getcwd();
change pwd to path
os.chdir(path)
删除文件
os.remove(‘filename’)
分隔文件名中的后缀与前缀
file_name = '/home/xxx/xxx/xxx.jpg'
res = os.path.splitext(file_name)
output:
type(res)
tuple
res[0]
'/home/xxx/xxx/xxx'
res[1]
'.jpg'