1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
use crate::fs::{Dir, File, FileType, Metadata, OpenOptions};
#[cfg(not(windows))]
use rustix::fs::DirEntryExt;
use std::ffi::OsString;
use std::{fmt, io};
pub struct DirEntry {
pub(crate) inner: cap_primitives::fs::DirEntry,
}
impl DirEntry {
#[inline]
pub fn open(&self) -> io::Result<File> {
let file = self.inner.open()?;
Ok(File::from_std(file))
}
#[inline]
pub fn open_with(&self, options: &OpenOptions) -> io::Result<File> {
let file = self.inner.open_with(options)?;
Ok(File::from_std(file))
}
#[inline]
pub fn open_dir(&self) -> io::Result<Dir> {
let dir = self.inner.open_dir()?;
Ok(Dir::from_std_file(dir))
}
#[inline]
pub fn remove_file(&self) -> io::Result<()> {
self.inner.remove_file()
}
#[inline]
pub fn remove_dir(&self) -> io::Result<()> {
self.inner.remove_dir()
}
#[inline]
pub fn metadata(&self) -> io::Result<Metadata> {
self.inner.metadata()
}
#[inline]
pub fn file_type(&self) -> io::Result<FileType> {
self.inner.file_type()
}
#[inline]
pub fn file_name(&self) -> OsString {
self.inner.file_name()
}
}
#[cfg(not(windows))]
impl DirEntryExt for DirEntry {
#[inline]
fn ino(&self) -> u64 {
self.inner.ino()
}
}
#[cfg(windows)]
#[doc(hidden)]
impl cap_primitives::fs::_WindowsDirEntryExt for DirEntry {
#[inline]
fn full_metadata(&self) -> io::Result<Metadata> {
cap_primitives::fs::_WindowsDirEntryExt::full_metadata(&self.inner)
}
}
impl fmt::Debug for DirEntry {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.inner.fmt(f)
}
}