2 #include <sys/statvfs.h>
8 #include <libsmbclient.h>
9 #include "get_auth_data_fn.h"
12 int main(int argc
, char * argv
[])
20 struct statvfs statvfsbuf
;
22 smbc_init(get_auth_data_fn
, debug
);
26 fprintf(stdout
, "Path: ");
28 fgets(path
, sizeof(path
) - 1, stdin
);
29 if (strlen(path
) == 0)
34 p
= path
+ strlen(path
) - 1;
40 /* Determine if it's a file or a folder */
41 if (smbc_stat(path
, &statbuf
) < 0)
47 if (S_ISREG(statbuf
.st_mode
))
49 if ((fd
= smbc_open(path
, O_RDONLY
, 0)) < 0)
57 if ((fd
= smbc_opendir(path
)) < 0)
59 perror("smbc_opendir");
64 ret
= smbc_fstatvfs(fd
, &statvfsbuf
);
75 printf("Block Size: %lu\n", statvfsbuf
.f_bsize
);
76 printf("Fragment Size: %lu\n", statvfsbuf
.f_frsize
);
77 printf("Blocks: %llu\n",
78 (unsigned long long) statvfsbuf
.f_blocks
);
79 printf("Free Blocks: %llu\n",
80 (unsigned long long) statvfsbuf
.f_bfree
);
81 printf("Available Blocks: %llu\n",
82 (unsigned long long) statvfsbuf
.f_bavail
);
83 printf("Files : %llu\n",
84 (unsigned long long) statvfsbuf
.f_files
);
85 printf("Free Files: %llu\n",
86 (unsigned long long) statvfsbuf
.f_ffree
);
87 printf("Available Files: %llu\n",
88 (unsigned long long) statvfsbuf
.f_favail
);
90 printf("File System ID: %lu\n",
91 (unsigned long) statvfsbuf
.f_fsid
);
95 printf("Flags: 0x%lx\n", statvfsbuf
.f_flag
);
96 printf("Extended Features: ");
98 if (statvfsbuf
.f_flag
& SMBC_VFS_FEATURE_NO_UNIXCIFS
)
100 printf("NO_UNIXCIFS ");
107 if (statvfsbuf
.f_flag
& SMBC_VFS_FEATURE_CASE_INSENSITIVE
)
109 printf("CASE_INSENSITIVE ");
113 printf("case_sensitive ");
116 if (statvfsbuf
.f_flag
& SMBC_VFS_FEATURE_DFS
)