Python| os.path.islink() 方法
Python中的OS 模块提供了与操作系统交互的功能。操作系统属于 Python 的标准实用程序模块。该模块提供了一种使用操作系统相关功能的可移植方式。 os.path模块是Python中OS 模块的子模块,用于常见的路径名操作。
Python中的os.path.islink()
方法用于检查给定路径是否表示现有目录条目,该目录条目是否为符号链接。
注意:如果Python运行时不支持符号链接,则os.path.islink()
方法总是返回False 。
Syntax: os.path.islink(path)
Parameter:
path: A path-like object representing a file system path. A path-like object is either a string or bytes object representing a path.
Return Type: This method returns a Boolean value of class bool. This method returns True if the given path is a directory entry that is a symbolic link, otherwise returns 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