Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以使用 st_mode 值来识别对象是文件还是目录?我正在使用 paramiko lstat() 从 sftp 文件中检索 st_mode 信息。
是的,统计结构 st_mode确实包含该信息。
st_mode
使用stat模块判断是否为目录:
stat
import stat if stat.S_ISDIR(lstat_result.st_mode):