Linux文件操作的常用系统函数说明
1. open打开文件 (man 2 open 查看) int open(const char *pathname, int flags); //pathname文件名(路径);flags打开模式, ...
1. open打开文件 (man 2 open 查看) int open(const char *pathname, int flags); //pathname文件名(路径);flags打开模式, ...
gmtime和localtime struct tm *gmtime(const time_t *timep); struct tm *gmtime_r(const time_t *timep, s ...