- 论坛徽章:
- 0
|
急!!!!! 通过libstat库获取SUN主机磁盘利用率?
下面小程序取得所有文件系统信息。sparc solaris 8/sun workshop C++
- // file: f.cpp
- // compile: CC f.cpp
- // run: ./a.out
- #include <cstdio>;
- #include <unistd.h>;
- #include <sys/vfs.h>;
- #include <sys/statvfs.h>;
- #include <string>;
- #include <fstream>;
- #define MTAB_FILE "/etc/mnttab"
- static int get_mountpoint(const char *line, char *mntpoint)
- {
- char tmp[1024];
- if(sscanf(line, "%s%s",tmp, mntpoint)!=2)
- {
- return -1;
- }
- return 0;
- }
- int main()
- {
- std::ifstream in;
- in.open(MTAB_FILE, std::ios_base::in);
- if(!in.is_open())
- {
- exit(1);
- }
- char line[512];
- char mntpoint[512];
- struct statvfs buf;
- while( !in.eof() )
- {
- in.getline(line, sizeof(line));
- if(get_mountpoint(line, mntpoint)!=0)
- {
- continue;
- }
- if(statvfs(mntpoint, &buf)==0)
- {
- long avail = (buf.f_bavail>;>;10)*buf.f_frsize;
- long total = (buf.f_blocks>;>;10) * buf.f_frsize;
- printf("%s: total = %ld, avail = %ld\n", mntpoint, total, avail);
- }
- }
- }
复制代码 |
|