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


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


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

os.scandir()Python中的方法用于获取os.DirEntry对象的迭代器,该对象与指定路径给定目录中的条目相对应。条目以任意顺序产生,不包括特殊条目“。”和“ ..”。

用法: os.scandir(path = ‘.’)

参数:
path:代表文件系统路径的path-like对象。这指定要扫描的目录。如果未指定路径,则将当前工作目录用作路径。
path-like对象是表示路径的字符串或字节对象。

返回类型:此方法返回与给定目录中的条目相对应的os.DirEntry对象的迭代器。

代码:使用os.scandir()方法
# Python program to explain os.scandir() method  
  
# importing os module  
import os 
  
  
# Directory to be scanned 
path = '/home / ihritik'
  
# Scan the directiory and get 
# an iterator of os.DirEntry objets 
# corresponding to entries in it  
# using os.scandir() method 
obj = os.scandir() 
  
# List all files and diretories  
# in the specified path 
print("Files and Directories in '% s':" % path) 
for entry in obj : 
    if entry.is_dir() or entry.is_file(): 
        print(entry.name) 
  
  
# entry.is_file() will check 
# if entry is a file or not and 
# entry.is_dir() method will 
# check if entry is a 
# directory or not.  
  
  
# To Close the iterator and 
# free acquired resources 
# use scandir.close() method 
obj.close() 
  
# scandir.close() method is called automatically 
# when the iterator is exhausted 
# or garbage collected, or  
# when an error happens during iterating.
输出:
Files and Directories in '/home':
GeeksforGeeks
Videos
Downloads
Pictures
Documents
sample.txt
Public
Desktop
Images
R

参考: https://docs.python.org/3/library/os.html#os.scandir



相关用法


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