Get the file creation time
(&self)
| 85 | |
| 86 | /// Get the file creation time |
| 87 | pub fn creation_time(&self) -> SystemTime { |
| 88 | systime_from_bntime(unsafe { BNProjectFileGetCreationTimestamp(self.handle.as_ptr()) }) |
| 89 | .unwrap() |
| 90 | } |
| 91 | |
| 92 | /// Get the folder that contains this file |
| 93 | pub fn folder(&self) -> Option<Ref<ProjectFolder>> { |
no test coverage detected