使用标准的path处理方法 (Python)

标准方法可以兼容不同系统,并且有一定的容错性(比如在目录末尾写不写/)

  • os.path.split(path) 分割路径和文件名
  • os.path.join() 合并路径和文件名
  • os.path.dirname() 方法可以获取目录名
  • os.path.basename() 方法可以获取文件名
  • os.path.splitext() 方法可以分离文件名和扩展名

  • os.path.split(path) 分割路径和文件名
  • os.path.join() 合并路径和文件名
1import os
2
3path = '/home/User/Desktop/file.txt'
4os.path.split(path) 
('/home/User/Desktop', 'file.txt')
1path = '/home/User/Desktop'
2file = 'file.txt'
3os.path.join(path,file) 
'/home/User/Desktop/file.txt'

os.path.normpath() 可以规范化路径,比如把多个/合并成一个,把.和..去掉

1path = '/home/User/Desktop//..//file.txt'
2os.path.normpath(path)
'/home/User/file.txt'

路径、文件名、扩展名

  • os.path.dirname() 方法可以获取目录名
  • os.path.basename() 方法可以获取文件名
  • os.path.splitext() 方法可以分离文件名和扩展名
1path = '/home/User/Desktop/file.txt'
2os.path.dirname(path)
'/home/User/Desktop'
1path = '/home/User/Desktop/file.txt'
2os.path.basename(path)
'file.txt'
1path = '/home/User/Desktop/file.txt'
2os.path.splitext(path)
3ext = os.path.splitext(path)[1]
('/home/User/Desktop/file', '.txt')

喜欢的老高视频|老高與小茉视频推荐
Json读写(Python)