Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。 os.path模块是Python中OS模块的子模块,用于通用路径名操作。
os.path.islink()
Python中的method方法用于检查给定的路径是否代表符号链接的现有目录条目。
注意:如果Python运行时不支持符号链接,则os.path.islink()
方法始终返回False。
用法: os.path.islink(path)
参数:
path:代表文件系统路径的path-like对象。 path-like对象是表示路径的字符串或字节对象。
返回类型:此方法返回布尔型的布尔值。如果给定路径是符号链接的目录条目,则此方法返回True,否则返回False。
创建软链接或符号链接
在Unix或Linux中,可以使用ln命令创建软链接或符号链接。下面是在shell提示符下创建符号链接的语法:
$ ln -s {source-filename} {symbolic-filename}
例:
在上面的输出中,file(shortcut).txt是一个符号链接,还显示了它链接到的文件名。
代码:使用os.path.islink()方法检查给定路径是否为符号链接
# Python program to explain os.path.islink() method
# importing os.path module
import os.path
# Path
path = "/home/ihritik/Documents/file(original).txt"
# Check whether the
# given path is a
# symbolic link
isLink = os.path.islink(path)
print(isLink)
# Path
path = "/home/ihritik/Desktop/file(shortcut).txt"
# Check whether the
# given path is a
# symbolic link
isLink = os.path.islink(path)
print(isFile)
输出:
False True
参考: https://docs.python.org/3/library/os.path.html
相关用法
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python Decimal max()用法及代码示例
- Python PIL ImageOps.fit()用法及代码示例
- Python os.rmdir()用法及代码示例
- Python sympy.det()用法及代码示例
- Python Decimal min()用法及代码示例
- Python os.readlink()用法及代码示例
- Python os.writev()用法及代码示例
- Python os.readv()用法及代码示例
- Python PIL RankFilter()用法及代码示例
- Python os.rename()用法及代码示例
- Python os.sendfile()用法及代码示例
注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.path.islink() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。