-
Notifications
You must be signed in to change notification settings - Fork 0
/
os_fstat.py
60 lines (46 loc) · 1.52 KB
/
os_fstat.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python3
# encoding: utf-8
# @author: hoojo
# @email: hoojo_@126.com
# @github: https://github.com/hooj0
# @create date: 2018-03-24 20:03:33
# @copyright by hoojo@2018
# @changelog Added python3 `os dir -> fstat` example
import os
'''
概述
os.fstat() 方法用于返回文件描述符fd的状态,类似 stat()。
Unix,Windows上可用。
fstat 方法返回的结构:
st_dev: 设备信息
st_ino: 文件的i-node值
st_mode: 文件信息的掩码,包含了文件的权限信息,文件的类型信息(是普通文件还是管道文件,或者是其他的文件类型)
st_nlink: 硬连接数
st_uid: 用户ID
st_gid: 用户组 ID
st_rdev: 设备 ID (如果指定文件)
st_size: 文件大小,以byte为单位
st_blksize: 系统 I/O 块大小
st_blocks: 文件的是由多少个 512 byte 的块构成的
st_atime: 文件最近的访问时间
st_mtime: 文件最近的修改时间
st_ctime: 文件状态信息的修改时间(不是文件内容的修改时间)
语法
fstat()方法语法格式如下:
os.fstat(fd)
参数
fd -- 文件的描述符。
返回值
返回文件描述符fd的状态。
'''
# 打开文件
fd = os.open('/tmp/foo.txt', os.O_CREAT)
info = os.fstat(fd)
print('fd info: %s' % info)
# 文件gid
print('fd info gid: %d' % info.st_gid)
# 文件uid
print('fd info gid: %d' % info.st_uid)
print('fd info file size: %d' % info.st_size)
print('fd info file create time: %d' % info.st_ctime)
os.close(fd)