
linux编程基础
文章平均质量分 72
为时不晚up
这个作者很懒,什么都没留下…
展开
-
stack smashing detected
core dumped stack smashing detected原创 2021-12-29 16:17:33 · 862 阅读 · 0 评论 -
获取指定文件的属性
获取指定文件的属性#include <sys/types.h>#include <sys/stat.h>#include <unistd.h>int stat(const char *pathname, struct stat *buf);//若获取符号链接文件的话,实际上它获取的是链接对应的实际文件的属性int lstat(const char *pathname, struct stat *buf); //可以获取符号链接文件本身的...原创 2021-01-15 14:39:12 · 155 阅读 · 0 评论