More warning fixes for Solaris.
[Samba.git] / examples / libsmbclient / testfstatvfs.c
blobb4dafefff60a4dc2991c9cf9b2659004b832a08e
1 #include <sys/types.h>
2 #include <sys/statvfs.h>
3 #include <stdio.h>
4 #include <unistd.h>
5 #include <string.h>
6 #include <time.h>
7 #include <errno.h>
8 #include <libsmbclient.h>
9 #include "get_auth_data_fn.h"
12 int main(int argc, char * argv[])
14 int i;
15 int fd;
16 int ret;
17 int debug = 0;
18 char * p;
19 char path[2048];
20 struct stat statbuf;
21 struct statvfs statvfsbuf;
23 smbc_init(get_auth_data_fn, debug);
25 for (;;)
27 fprintf(stdout, "Path: ");
28 *path = '\0';
29 fgets(path, sizeof(path) - 1, stdin);
30 if (strlen(path) == 0)
32 return 0;
35 p = path + strlen(path) - 1;
36 if (*p == '\n')
38 *p = '\0';
41 /* Determine if it's a file or a folder */
42 if (smbc_stat(path, &statbuf) < 0)
44 perror("smbc_stat");
45 continue;
48 if (S_ISREG(statbuf.st_mode))
50 if ((fd = smbc_open(path, O_RDONLY, 0)) < 0)
52 perror("smbc_open");
53 continue;
56 else
58 if ((fd = smbc_opendir(path)) < 0)
60 perror("smbc_opendir");
61 continue;
65 ret = smbc_fstatvfs(fd, &statvfsbuf);
67 smbc_close(fd);
69 if (ret < 0)
71 perror("fstatvfs");
73 else
75 printf("\n");
76 printf("Block Size: %lu\n", statvfsbuf.f_bsize);
77 printf("Fragment Size: %lu\n", statvfsbuf.f_frsize);
78 printf("Blocks: %llu\n", statvfsbuf.f_blocks);
79 printf("Free Blocks: %llu\n", statvfsbuf.f_bfree);
80 printf("Available Blocks: %llu\n", statvfsbuf.f_bavail);
81 printf("Files : %llu\n", statvfsbuf.f_files);
82 printf("Free Files: %llu\n", statvfsbuf.f_ffree);
83 printf("Available Files: %llu\n", statvfsbuf.f_favail);
84 printf("File System ID: %lu\n", statvfsbuf.f_fsid);
85 printf("\n");
87 printf("Flags: 0x%lx\n", statvfsbuf.f_flag);
88 printf("Extended Features: ");
90 if (statvfsbuf.f_flag & SMBC_VFS_FEATURE_NO_UNIXCIFS)
92 printf("NO_UNIXCIFS ");
94 else
96 printf("unixcifs ");
99 if (statvfsbuf.f_flag & SMBC_VFS_FEATURE_CASE_INSENSITIVE)
101 printf("CASE_INSENSITIVE ");
103 else
105 printf("case_sensitive ");
108 if (statvfsbuf.f_flag & SMBC_VFS_FEATURE_DFS)
110 printf("DFS ");
112 else
114 printf("no_dfs ");
117 printf("\n");
121 return 0;