2013-03-08 01:00:21 +01:00
|
|
|
#include <sys/statvfs.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
int main(int argc, char ** argv) {
|
|
|
|
struct statvfs stat;
|
|
|
|
if (argc != 2) {
|
|
|
|
fprintf(stderr, "Usage: %s PATH", argv[0]);
|
|
|
|
exit(2);
|
|
|
|
}
|
2013-03-26 17:35:28 +01:00
|
|
|
if (statvfs(argv[1], &stat) != 0) {
|
2013-03-08 01:00:21 +01:00
|
|
|
perror("statvfs");
|
|
|
|
exit(3);
|
|
|
|
}
|
|
|
|
if (stat.f_flag & ST_RDONLY)
|
|
|
|
exit(0);
|
|
|
|
else
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|