blob: 31a0e50a63fe9a1be44698be5b1647c3955fa5a4 (
plain)
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
|
#[derive(Debug)]
pub struct SplFileInfo;
impl SplFileInfo {
pub fn new(_path: &str) -> Self {
todo!()
}
pub fn get_pathname(&self) -> String {
todo!()
}
pub fn get_path(&self) -> String {
todo!()
}
pub fn get_filename(&self) -> String {
todo!()
}
pub fn get_basename(&self, _suffix: Option<&str>) -> String {
todo!()
}
pub fn get_extension(&self) -> String {
todo!()
}
pub fn get_relative_path_name(&self) -> String {
todo!()
}
pub fn get_relative_path(&self) -> String {
todo!()
}
pub fn is_dir(&self) -> bool {
todo!()
}
pub fn is_file(&self) -> bool {
todo!()
}
pub fn is_link(&self) -> bool {
todo!()
}
pub fn get_real_path(&self) -> Option<String> {
todo!()
}
pub fn get_size(&self) -> i64 {
todo!()
}
}
|