C/C++
Ahon
关注 JavaEE,Android,Javascript,HTML5,MySQL,Hadoop,Linux
展开
-
CodeBlocks 关闭语法纠错功能(红色波浪线)
菜单栏 Plugins(插件) —— Manage plugins —— SpellChecker,将它设置为 disable原创 2021-12-09 09:28:11 · 1146 阅读 · 0 评论 -
C语言stat()函数:获取文件状态
相关函数:fstat, lstat, chmod, chown, readlink, utime头文件:#include <sys/stat.h> #include <uninstd.h>定义函数:int stat(const char * file_name, struct stat *buf);函数说明:stat()用来将参数file_name所指的文件状态, 复制到参数buf 所指的结构中。下面是struct stat 内各参数的说明:struct stat原创 2021-09-27 20:06:15 · 1086 阅读 · 0 评论