public static DateTime GetCreationTimeUtc(string path, PathFormat pathFormat)
 {
     return(File.GetCreationTimeInternal(null, path, true, pathFormat));
 }
 public static DateTime GetCreationTime(string path, PathFormat pathFormat)
 {
     return(File.GetCreationTimeInternal(null, path, false, pathFormat).ToLocalTime());
 }
 public static DateTime GetCreationTime(KernelTransaction transaction, string path)
 {
     return(File.GetCreationTimeInternal(transaction, path, false, PathFormat.RelativePath).ToLocalTime());
 }
 public static DateTime GetCreationTimeUtc(KernelTransaction transaction, string path)
 {
     return(File.GetCreationTimeInternal(transaction, path, true, PathFormat.RelativePath));
 }