mirror of
https://github.com/kdave/btrfs-progs
synced 2025-01-30 09:21:45 +00:00
btrfsctl detects dir/file of args
This commit is contained in:
parent
e52d2e2fa1
commit
88e3e66570
20
btrfsctl.c
20
btrfsctl.c
@ -9,6 +9,7 @@
|
||||
#include <sys/stat.h>
|
||||
#include <fcntl.h>
|
||||
#include <unistd.h>
|
||||
#include <dirent.h>
|
||||
#include "kerncompat.h"
|
||||
|
||||
#ifdef __CHECKER__
|
||||
@ -33,6 +34,8 @@ int main(int ac, char **av)
|
||||
struct btrfs_ioctl_vol_args args;
|
||||
char *name;
|
||||
int i;
|
||||
struct stat st;
|
||||
DIR *dirstream;
|
||||
|
||||
for (i = 1; i < ac - 1; i++) {
|
||||
if (strcmp(av[i], "-s") == 0) {
|
||||
@ -49,8 +52,21 @@ int main(int ac, char **av)
|
||||
}
|
||||
fname = av[ac - 1];
|
||||
printf("fname is %s\n", fname);
|
||||
fd = open(fname, O_RDWR);
|
||||
if (fd < 0) {
|
||||
ret = stat(fname, &st);
|
||||
if (ret < 0) {
|
||||
perror("stat:");
|
||||
exit(1);
|
||||
}
|
||||
if (S_ISDIR(st.st_mode)) {
|
||||
dirstream = opendir(fname);
|
||||
if (!dirstream) {
|
||||
perror("opendir");
|
||||
exit(1);
|
||||
}
|
||||
fd = dirfd(dirstream);
|
||||
} else {
|
||||
fd = open(fname, O_RDWR);
|
||||
} if (fd < 0) {
|
||||
perror("open");
|
||||
exit(1);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user