Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。
os.scandir()
os模块产量的方法os.DirEntry
与指定路径给定目录中的条目相对应的对象。os.DirEntry
对象具有各种属性和方法,用于公开目录条目的文件路径和其他文件属性。
name
归因于os.DirEntry
object用于获取条目的基本文件名,相对于在os.scandir()
方法。
注意: os.DirEntry
打算在迭代后使用和丢弃对象,因为对象的属性和方法将其值缓存起来,而不再重新获取这些值。自调用os.scandir()方法以来,文件的元数据是否已更改,或者是否经过了很长时间。我们将不会获得up-to-date信息。
用法: os.DirEntry.name
参数:没有
返回值:此属性返回一个字符串值,该字符串值表示条目的基本文件名。
代码1:用于os.DirEntry.name
属性
# Python program to explain os.DirEntry.name attribute
# importing os module
import os
# Directory to be scanned
# Current working directory
path = os.getcwd()
# Using os.scandir() method
# scan the specified directory
# and yield os.DirEntry object
# for each file and sub-directory
print("Base filename of all directory entry in '% s':" % path)
with os.scandir(path) as itr:
for entry in itr:
# Exclude the entry name
# starting with '.'
if not entry.name.startswith('.'):
# print entry's name
print(entry.name)
输出:
Base filename of all directory entry in '/home/ihritik': Public Desktop R foo.txt graph.cpp tree.cpp Pictures abc.py file.txt Videos images Downloads GeeksforGeeks Music Documents
代码2:用于os.DirEntry.name()
属性
# Python program to explain os.DirEntry.name attribute
# importing os module
import os
# Directory to be scanned
# Current working directory
path = os.getcwd()
# Using os.scandir() method
# scan the specified directory
# and yield os.DirEntry object
# for each file and sub-directory
print("All files and directory whose name starts with letter 'D' in '% s'" % path)
with os.scandir(path) as itr:
for entry in itr:
# Check if directory entry name
# starts with letter 'D'
if entry.name.startswith('D'):
# print entry's name
print(entry.name)
输出:
All files and directory whose name starts with letter 'D' in '/home/ihritik': Desktop Documents Downloads
参考文献: https://docs.python.org/3/library/os.html#os.DirEntry.name
相关用法
注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.DirEntry.name attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。