Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。
os.scandir()
os模块产量的方法os.DirEntry
与指定路径给定目录中的条目相对应的对象。os.DirEntry
对象具有各种属性和方法,用于公开目录条目的文件路径和其他文件属性。
is_symlink()
方法开启os.DirEntry
object用于检查条目是否为符号链接。
注意: os.DirEntry
打算在迭代后使用和丢弃对象,因为对象的属性和方法将其值缓存起来,而不再重新获取这些值。自调用os.scandir()方法以来,文件的元数据是否已更改,或者是否经过了很长时间。我们将不会获得up-to-date信息。
用法: os.DirEntry.is_symlink()
参数:没有
返回值:如果条目是符号链接(即使已断开),则此方法返回True,否则返回False。
代码1:使用os.DirEntry.is_symlink()
方法
# Python program to explain os.DirEntry.is_symlink() method
# importing os module
import os
# Directory to be scanned
# Path
path = "/home / ihritik"
# Print all symbolic links
# in the above path
# Using os.scandir() method
# scan the specified directory
# and yield os.DirEntry object
# for each file and sub-directory
obj = os.scandir(path)
print("Symbolic links in the path '% s':" % path)
for entry in obj:
# Check if the entry
# is a symbolic link
# using os.DirEntry.is_symlink() method
if entry.is_symlink():
# Print symbolic link
# full path
print(entry.path)
输出:
Symbolic links in the path '/home/ihritik': /home/ihritik/file.txt /home/ihritik/sample.py
代码:使用os.DirEntry.is_symlink()
方法
# Python program to explain os.DirEntry.is_symlink() method
# importing os module
import os
# Directory to be scanned
# Path
path = "/home / ihritik"
# Count number of
# symbolic links
# in the above path
# Using os.scandir() method
# scan the specified directory
# and yield os.DirEntry object
# for each file and sub-directory
obj = os.scandir(path)
count = 0;
for entry in obj:
# Check if the entry
# is a symbolic link
# using os.DirEntry.is_symlink() method
if entry.is_symlink():
count = count + 1
print("Count of symbolic links in the path '% s':" % path, count)
输出:
Count of symbolic links in the path '/home/ihritik':2
参考文献: https://docs.python.org/3/library/os.html#os.DirEntry.is_symlink
相关用法
- Python next()用法及代码示例
- Python set()用法及代码示例
- Python os.dup()用法及代码示例
- Python os.WEXITSTATUS()用法及代码示例
- Python os._exit()用法及代码示例
- Python PIL UnsahrpMask()用法及代码示例
- Python Numpy np.fft()用法及代码示例
- Python os.abort()用法及代码示例
- Python PIL RankFilter()用法及代码示例
- Python os.WIFEXITED()用法及代码示例
- Python os.setgroups()用法及代码示例
- Python os.getcwd()用法及代码示例
- Python os.sendfile()用法及代码示例
- Python os.pipe2()用法及代码示例
注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.DirEntry.is_symlink() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。