- 论坛徽章:
- 1
|
将磁盘挂载到某个目录上,然后磁盘损坏了,如何通过代码判断磁盘是否损坏。
我是通过access函数去判断的,但是access返回的是目录可读可写,代码如下:
- #include <stdio.h>
- #include <unistd.h>
- #include <sys/stat.h>
- int main(void)
- {
- char *dir = "/mnt";
- int ret;
- struct stat s;
- ret = access(dir, R_OK | W_OK);
- if (ret < 0) {
- printf("access ERROR: %s can not be read or write ret=%d\n", dir, ret);
- return 0;
- }
- printf("access INFO: %s can be read and write ret=%d\n", dir, ret);
- ret = stat(dir, &s);
- if (ret < 0) {
- printf("stat ERROR: %s can not be read or write ret=%d\n", dir, ret);
- return 0;
- }
- printf("stat INFO: %s can be read and write ret=%d\n", dir, ret);
- return 0;
- }
复制代码
而我执行ls,却提示错误
- [test]# ./access
- access INFO: /mnt can be read and write ret=0
- stat INFO: /mnt can be read and write ret=0
- [test]# ls /sdf
- ls: reading directory /mnt: Input/output error
复制代码
各位大神知道是什么原因吗?
|
|