标签:style blog http io ar color os 使用 sp
Linux shell可通过查看/etc/mtab或者/proc/mounts文件来获取当前文件系统挂载信息,示例:
程序内读取/etc/mtab或者/proc/mounts,解析字符串较为繁琐,可以使用mntent提供的方便函数:
FILE *setmntent(const char *filename, const char *type); struct mntent *getmntent(FILE *filep); int endmntent(FILE *filep);
struct mntent { char *mnt_fsname; /* 文件系统对应的设备路径或者服务器地址 */ char *mnt_dir; /* 文件系统挂载到的系统路径 */ char *mnt_type; /* 文件系统类型: ufs, nfs, 等 */ char *mnt_opts; /* 文件系统挂载参数,以逗号分隔 */ int mnt_freq; /* 文件系统备份频率(以天为单位) */ int mnt_passno; /* 开机fsck的顺序,如果为0,不会进行check */ };
示例程序:
#include <stdio.h> #include <mntent.h> #include <errno.h> #include <string.h> int main(void) { char *filename = "/proc/mounts"; FILE *mntfile; struct mntent *mntent; mntfile = setmntent(filename, "r"); if (!mntfile) { printf("Failed to read mtab file, error [%s]\n", strerror(errno)); return -1; } while(mntent = getmntent(mntfile)) printf("%s, %s, %s, %s\n", mntent->mnt_dir, mntent->mnt_fsname, mntent->mnt_type, mntent->mnt_opts); endmntent(mntfile); return 0; }
标签:style blog http io ar color os 使用 sp
原文地址:http://www.cnblogs.com/ziziwu/p/4140503.html