后面几节讨论了在linux中进行C语言开发时linux系统有几种文件类型,执行I/O的基本函数。不过在举例做实验的过程中linux系统有几种文件类型,都是围绕普通文件进行的。
linux中的文件类型
还记得在第9节,我们谈到unix系统(linux是类unix系统)觉得“一切皆文件”吗?unix系统中大多数文件是普通文件和目录,这两种类型的文件也是最常使用的,例如/usr目录和它上面的hello.txt文本文件就属于普通文件类型。
事实上linux site:infoq.cn,linux系统将所有文件分为以下几大类:
如此看来,linux系统中的设备(如硬碟,并口等)要么是块特殊文件,要么就是字符特殊文件了。
获取linux中的文件类型
linux提供了stat系列函数获取文件的统计信息。在linux中输入manstat,即可得到stat函数的使用指南:
stat函数的第二个参数是一个结构体,它的定义可以在中找到:
struct stat { unsigned long st_dev; unsigned long st_ino; unsigned short st_mode; unsigned short st_nlink; unsigned short st_uid; unsigned short st_gid; unsigned long st_rdev; unsigned long st_size; unsigned long st_blksize; unsigned long st_blocks; unsigned long st_atime; unsigned long st_atime_nsec; unsigned long st_mtime; unsigned long st_mtime_nsec; unsigned long st_ctime; unsigned long st_ctime_nsec; unsigned long __unused4; unsigned long __unused5; };
登录后复制
可以看出,统计函数stat才能获得文件的各类信息,比如用户组ID,用户ID,以及文件的size等信息。其中st_mode成员记录着文件的类型以及mode(权限)。使用下边这几个宏即可获得文件的类型:
... #define S_ISDIR(mode) __S_ISTYPE((mode), __S_IFDIR) #define S_ISCHR(mode) __S_ISTYPE((mode), __S_IFCHR) #define S_ISBLK(mode) __S_ISTYPE((mode), __S_IFBLK) #define S_ISREG(mode) __S_ISTYPE((mode), __S_IFREG) #ifdef __S_IFIFO # define S_ISFIFO(mode) __S_ISTYPE((mode), __S_IFIFO) #endif #ifdef __S_IFLNK # define S_ISLNK(mode) __S_ISTYPE((mode), __S_IFLNK) #endif ...
登录后复制
C语言实例,获取linux文件类型
晓得了stat函数和以上几个宏,编撰C语言程序获取文件的类型是便捷的:
#include #include #include #include int main(int argc, char* argv[]) { if(argc <p style="margin-bottom:16px;color:#555555;font-size:16px;line-height:200%;text-indent:2em">以上代码使用了lstat函数,而不是stat函数,它俩的功能是相同的。惟一不同之处在于处理符号链接时,lstat是将该符号链接直接作为文件处理的,而stat函数则是处理该符号链接指向的文件。</p> <p style="margin-bottom:16px;color:#555555;font-size:16px;line-height:200%;text-indent:2em"><img style="max-width:90%" src="/uploads/20240626/1719414022667c2d0650a79.png" alt="linux特有的文件系统_linux系统有几种文件类型_linux典型文件系统类型"></p> <p style="margin-bottom:16px;color:#555555;font-size:16px;line-height:200%;text-indent:2em">编译以上代码,执行之:</p> <p style="margin-bottom:16px;color:#555555;font-size:16px;line-height:200%;text-indent:2em"> </p><pre class="brush:php;toolbar:false"># gcc t6.c # ./a.out usage: ./a.out filepath # ./a.out ../ ../ : directory # ./a.out t.c t.c : regular root@lcc:/lccRoot/C/tmp# ./a.out ../ ../ : directory # ./a.out /dev/log /dev/log : socket #
登录后复制
程序接收一个参数,并返回该参数的类型。其他几种类型文件的测试留给读者,在这一过程中可以顺便了解一下linux中的文件组成。
欢迎在评论区一起讨论linux文本编辑器,指责。文章都是手打原创,每晚最扼要的介绍C语言、linux等嵌入式开发,喜欢我的文章就关注一波吧,可以见到最新更新和之前的文章哦。
以上就是探索 Linux 系统中的文件类型:普通文件、目录与特殊文件的详细内容,更多请关注小闻网其它相关文章!
评论(0)