示例#1
0
 public static DateTime GetChangeTimeTransacted(KernelTransaction transaction, string path)
 {
     return(File.GetChangeTimeCore(transaction, null, true, path, false, PathFormat.RelativePath));
 }
示例#2
0
 public static DateTime GetChangeTimeUtc(SafeFileHandle safeFileHandle)
 {
     return(File.GetChangeTimeCore(null, safeFileHandle, true, null, true, PathFormat.RelativePath));
 }
示例#3
0
 public static DateTime GetChangeTimeUtc(string path, PathFormat pathFormat)
 {
     return(File.GetChangeTimeCore(null, null, true, path, true, pathFormat));
 }
示例#4
0
 public static DateTime GetChangeTime(string path)
 {
     return(File.GetChangeTimeCore(null, null, true, path, false, PathFormat.RelativePath));
 }
示例#5
0
 public static DateTime GetChangeTimeUtcTransacted(KernelTransaction transaction, string path, PathFormat pathFormat)
 {
     return(File.GetChangeTimeCore(transaction, null, true, path, true, pathFormat));
 }
示例#6
0
 public static DateTime GetChangeTime(string path, PathFormat pathFormat)
 {
     return(File.GetChangeTimeCore(true, null, null, path, false, pathFormat));
 }