Beispiel #1
0
 /// <summary>
 /// Gets the last write time of a given file in UTC
 /// </summary>
 /// <param name="file">The full path to the file in non-snapshot format</param>
 /// <returns>The last write time of the file</returns>
 public override DateTime GetCreationTimeUtc(string file)
 {
     return(m_sysIO.FileGetCreationTimeUtc(file));
 }
 /// <summary>
 /// Gets the last write time of a given file in UTC
 /// </summary>
 /// <param name="localPath">The full path to the file in non-snapshot format</param>
 /// <returns>The last write time of the file</returns>
 public override DateTime GetCreationTimeUtc(string localPath)
 {
     return(IO_WIN.FileGetCreationTimeUtc(localPath));
 }