gpt4 book ai didi

python - Python 中的 "name S_ISREG is not defined"

转载 作者:行者123 更新时间:2023-12-01 07:13:52 28 4
gpt4 key购买 nike

我正在尝试获取路径中的项目列表并确定它是文件还是文件夹。

我正在 Windows 中运行该脚本。

sftp = sftp_connection(host, username, password, INPUT_DIR)
files = get_list_directories(sftp)
if len(files) > 0:
for file in files:
mode = file.st_mode
if S_ISDIR(mode):
print(file.filename + " is folder.")
elif S_ISREG(mode):
print(file.filename + " is file.")

这给了我项目列表,同时也提供了输出

name 'S_ISDIR' is not defined

最佳答案

S_ISDIRS_ISREG定义于 Python stat module .

from stat import S_ISDIR, S_ISREG

关于python - Python 中的 "name S_ISREG is not defined",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58077809/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com