os.path模块提供用于处理文件路径的函数,这些函数可以跨平台使用,因为他们会根据操作系统的不同选择适当的路径分隔符。
1.os.path.join(path, *paths)
作用:将多个路径组合成一个完整的路径
path = os.path.join('/path/to' + 'example' + 'file.txt')
2.os.path.abspath(path)
作用:返回指定路径的绝对路径
path = os.path.abspath('relative/path/to/file.txt')
3.os.path.dirname(path)
作用:返回指定路径的目录名
directory = os.path.dirname('/path/to/file.txt')
4.os.path.basename(path)
作用:返回指定路径的文件名(包含扩展名)
filename = os.path.basename('/path/to/file.txt')
5.os.path.exists(path)
作用:判断指定路径是否存在
if os.path.exists('/path/to/file.txt'):
print('File exists!')
6.os.path.isfile(path)
作用:判断指定路径是否是文件
if os.path.isfile('/path/to/file.txt'):
print('It is a file!')
7.os.path.isdir(path)
作用:判断指定路径是否是目录
if os.path.isdir('/path/to/directory'):
print('It is a directory!')
8.os.path.splitext(path)
作用:分离路径中的文件名和扩展名,返回一个包含文件名和扩展名的元组。
filename, extension = os.path.splitext('/path/to/file.txt')