CopyCommand WIP

This commit is contained in:
2022-06-08 22:05:23 +02:00
parent 1547e84de4
commit e947282d7b
13 changed files with 338 additions and 7 deletions

View File

@@ -50,4 +50,7 @@ public class AbsolutePath
return null;
}
}
public AbsolutePath GetChild(string childName, AbsolutePathType type)
=> new (TimelessProvider, PointInTime, Path.GetChild(childName), type);
}

View File

@@ -0,0 +1,3 @@
namespace FileTime.Core.Models.Extensions;
public record FileExtension(long? Size);