当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python os.path.splitext()用法及代码示例


Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。 os.path模块是Python中OS模块的子模块,用于通用路径名操作。

os.path.splitext()Python中的方法用于将路径名分为成对的根和扩展名。在这里,ext表示扩展,具有指定路径的扩展部分,而root是除ext以外的所有内容。如果指定的路径没有扩展名,则ext为空。如果指定路径的前置时间(“。”),它将被忽略。

例如,考虑以下路径名:


      path name                          root                        ext
/home/User/Desktop/file.txt    /home/User/Desktop/file              .txt
/home/User/Desktop             /home/User/Desktop                  {empty}
file.py                               file                          .py
.txt                                  .txt                         {empty}   
用法: os.path.splitext(path)

参数:
path:代表文件系统路径的path-like对象。 path-like对象是表示路径的str或bytes对象。

返回类型:此方法返回一个表示指定路径名的根和扩展部分的元组。

代码:os.path.splitext()方法的使用
# Python program to explain os.path.splitext() method  
    
# importing os module  
import os 
  
# path 
path = '/home/User/Desktop/file.txt'
  
# Split the path in  
# root and ext pair 
root_ext = os.path.splitext(path) 
  
# print root and ext 
# of the specified path 
print("root part of '% s':" % path, root_ext[0]) 
print("ext part of '% s':" % path, root_ext[1], "\n") 
  
  
# path 
path = '/home/User/Desktop/'
  
# Split the path in  
# root and ext pair 
root_ext = os.path.splitext(path) 
  
# print root and ext 
# of the specified path 
print("root part of '% s':" % path, root_ext[0]) 
print("ext part of '% s':" % path, root_ext[1])
输出:
root part of '/home/User/Desktop/file.txt':/home/User/Desktop/file
ext part of '/home/User/Desktop/file.txt':.txt 

root part of '/home/User/Desktop/':/home/User/Desktop/
ext part of '/home/User/Desktop/':

参考: https://docs.python.org/3/library/os.path.html



相关用法


注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.path.splitext() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。