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


Python os.DirEntry.is_symlink()用法及代码示例


Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。

os.scandir()os模块产量的方法os.DirEntry与指定路径给定目录中的条目相对应的对象。os.DirEntry对象具有各种属性和方法,用于公开目录条目的文件路径和其他文件属性。

is_symlink()方法开启os.DirEntryobject用于检查条目是否为符号链接。


注意: 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



相关用法


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