mirror of
https://github.com/veeso/termscp.git
synced 2025-12-07 09:36:00 -08:00
Abs path to FsFile and FsDirectory
This commit is contained in:
@@ -43,6 +43,7 @@ pub enum FsEntry {
|
||||
#[derive(Clone, std::fmt::Debug)]
|
||||
pub struct FsDirectory {
|
||||
pub name: String,
|
||||
pub abs_path: PathBuf,
|
||||
pub last_change_time: SystemTime,
|
||||
pub last_access_time: SystemTime,
|
||||
pub creation_time: SystemTime,
|
||||
@@ -60,6 +61,7 @@ pub struct FsDirectory {
|
||||
#[derive(Clone, std::fmt::Debug)]
|
||||
pub struct FsFile {
|
||||
pub name: String,
|
||||
pub abs_path: PathBuf,
|
||||
pub last_change_time: SystemTime,
|
||||
pub last_access_time: SystemTime,
|
||||
pub creation_time: SystemTime,
|
||||
|
||||
Reference in New Issue
Block a user