网站首页 站内搜索

搜索结果

查询Tags标签: dirent,共有 5条记录
  • Linux Rootkit技术

    一、介绍Rootkit这一概念最早出现于上个世纪九十年代初期,CERT Coordination Center(CERT/CC)于1994年在CA-1994-01这篇安全咨询报告中使用了Rootkit这个词汇。在这之后Rootkit技术发展迅速,这种快速发展的态势在2000年达到了顶峰。2000年后,Rootkit技术的发展也进入了…

    2022/9/3 5:24:02 人评论 次浏览
  • linux文件系统之获取目录信息总结

    List文章目录 List获取文件目录信息DIR结构体目录信息结构体ino_t d_ino; /* inode number */off_t d_off; /* not an offset; see NOTES */unsigned short d_reclen; /* length of this record */unsigned char d_type; /* type of file; not supported */char d_name [N…

    2022/1/2 7:07:22 人评论 次浏览
  • linux文件系统之获取目录信息总结

    List文章目录 List获取文件目录信息DIR结构体目录信息结构体ino_t d_ino; /* inode number */off_t d_off; /* not an offset; see NOTES */unsigned short d_reclen; /* length of this record */unsigned char d_type; /* type of file; not supported */char d_name [N…

    2022/1/2 7:07:22 人评论 次浏览
  • Linux:遍历文件目录

    /*** 扫描一个目录*/#include <dirent.h> #include <stdio.h> #include <string.h> #include <errno.h>static void list_files(const char *dir_path) {DIR *ptr_dir = NULL;struct dirent *ptr_dirent = NULL;ptr_dir = opendir(dir_path);if (…

    2021/10/21 7:11:42 人评论 次浏览
  • Linux:遍历文件目录

    /*** 扫描一个目录*/#include <dirent.h> #include <stdio.h> #include <string.h> #include <errno.h>static void list_files(const char *dir_path) {DIR *ptr_dir = NULL;struct dirent *ptr_dirent = NULL;ptr_dir = opendir(dir_path);if (…

    2021/10/21 7:11:42 人评论 次浏览
扫一扫关注最新编程教程