bin/proxmox-backup-client.rs: improve file name completion

This commit is contained in:
Dietmar Maurer 2019-01-18 13:40:05 +01:00
parent 95cea65b04
commit 73e844dbfe
1 changed files with 5 additions and 2 deletions

View File

@ -130,9 +130,12 @@ pub fn complete_file_name(arg: &str) -> Vec<String> {
let mut dirname = std::path::PathBuf::from(arg);
if let Ok(stat) = nix::sys::stat::fstatat(libc::AT_FDCWD, &dirname, AtFlags::empty()) {
let is_dir = match nix::sys::stat::fstatat(libc::AT_FDCWD, &dirname, AtFlags::empty()) {
Ok(stat) => (stat.st_mode & libc::S_IFMT) == libc::S_IFDIR,
Err(_) => false,
};
} else {
if !is_dir {
if let Some(parent) = dirname.parent() {
dirname = parent.to_owned();
}