public bool NewerThan(FileRef dst) { Debug.Assert(IOFile.Exists(this)); return(!IOFile.Exists(dst) || IOFile.GetLastWriteTime(this) > IOFile.GetLastWriteTime(dst)); }
public FileRef File(string fileName) { return(FileRef.From(IOPath.Combine(Path, fileName).Replace("\\", "/"))); }