def stat(self) -> Stat:
# Return a directory with read and execute (traverse) permissions for
# everybody.
now = time.time()
return dict(st_mode=(S_IFDIR | 0o755),
st_nlink=2,
st_ctime=now,
st_mtime=now,
st_attime=now)
评论列表
文章目录