public static DateTime GetChangeTimeUtc(KernelTransaction transaction, string path)
 {
     return(File.GetChangeTimeInternal(true, transaction, null, path, true, PathFormat.RelativePath));
 }
 public static DateTime GetChangeTimeUtc(SafeFileHandle safeHandle)
 {
     return(File.GetChangeTimeInternal(true, null, safeHandle, null, true, PathFormat.RelativePath));
 }
 public static DateTime GetChangeTime(KernelTransaction transaction, string path, PathFormat pathFormat)
 {
     return(File.GetChangeTimeInternal(true, transaction, null, path, false, pathFormat));
 }
 public static DateTime GetChangeTimeUtc(string path)
 {
     return(File.GetChangeTimeInternal(true, null, null, path, true, PathFormat.RelativePath));
 }
 public static DateTime GetChangeTime(string path, PathFormat pathFormat)
 {
     return(File.GetChangeTimeInternal(true, null, null, path, false, pathFormat));
 }