📜  Python| os.path.ismount() 方法

📅  最后修改于: 2022-05-13 01:55:40.924000             🧑  作者: Mango

Python| os.path.ismount() 方法

Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。 os.path模块是Python中OS 模块的子模块,用于常见的路径名操作。

Python中的os.path.ismount()方法用于检查给定路径是否为挂载点。
挂载点是文件系统中已挂载不同文件系统的点。

在 Linux 系统上,可以使用df命令显示分区及其挂载点信息。

例如:
挂载点信息

代码 #1:使用 os.path.ismount() 方法检查给定路径是否为挂载点(在 Unix 上)

# Python program to explain os.path.islink() method 
    
# importing os.path module 
import os.path
  
# Path 
path = "/run" 
  
# Check whether the 
# given path is a
# mount point or not
ismount = os.path.ismount(path)
  
  
# Path 
path = "/dev" 
  
# Check whether the 
# given path is a
# mount point or not
ismount = os.path.ismount(path)
print(ismount)
输出:
True
True

代码 #2:使用 os.path.ismount() 方法检查给定路径是否为挂载点(在 Windows 上)

# Python program to explain os.path.islink() method 
    
# importing os.path module 
import os.path
  
  
# On Windows, a drive letter root
# and a share UNC are always
# mount points Path 
path = "C:" 
  
# Check whether the 
# given path is a
# mount point or not
ismount = os.path.ismount(path)
print(ismount)
输出:
True

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