第三章说明了关于文件I/O的基本函数,主要是针对普通regular类型文件.本章描述文件的属性,除了regular文件还有其他类型的文件. 函数stat.fstat.fstatat和lstat stat系列函数用于返回文件的属性信息,比如文件类型.大小.所有者.访问修改时间等.其头文件及函数原型如下: #include <sys/stat.h> int stat (const char *restrict file, struct stat *restrict buf); int fstat…
打开文件 open(name[mode[,buffing]) name: 是强制选项,模式和缓冲是可选的 #假设文件不在.会报以下错误: >>> f = open(r'D:\text.txt','r') Traceback (most recent call last): File "<stdin>", line 1, in <module> IOError: [Errno 2] No such file or directory: 'D:\\…