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


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


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

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

inode()方法开启os.DirEntryobject用于获取条目的索引节点号。


注意: os.DirEntry打算在迭代后使用和丢弃对象,因为对象的属性和方法将其值缓存起来,而不再重新获取这些值。自调用os.scandir()方法以来,文件的元数据是否已更改,或者是否经过了很长时间。我们将不会获得up-to-date信息。

用法: inode()

参数:不需要参数

返回类型:此方法返回一个整数值,该整数值表示条目的索引节点号。

代码:使用os.DirEntry.inode()方法

# Python program to explain os.DirEntry.inode() method  
  
# importing os module   
import os 
  
  
# Directory to be scanned 
path = os.getcwd() 
  
# Using os.scandir() method 
# scan the specified directory 
# and yield os.DirEntry object 
# for each file and sub-directory 
  
print("Directory entry name and their inode number")  
with os.scandir(path) as itr: 
    for entry in itr : 
        # Exclude the entry name 
        # starting with '.'   
        if not entry.name.startswith('.') : 
            # print entry name 
            # and entry's inode() number  
            print(entry.name, " :", entry.inode())
输出:
Directory entry name and their inode number
Public  : 786500
Desktop  : 786497
R  : 1969824
foo.txt  : 801099
graph.cpp  : 801237
tree.cpp  : 801364
Pictures  : 786503
abc.py  : 801140
file.txt  : 801366
Videos  : 786504
images  : 1969766
Downloads  : 786498
geeksforgeeks  : 2097180
Music  : 801428
Documents  : 786501

参考文献: https://docs.python.org/3/library/os.html#os.DirEntry.inode



相关用法


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