Ejemplo n.º 1
0
 public static DateTime GetChangeTimeUtc(KernelTransaction transaction, string path)
 {
     return(File.GetChangeTimeInternal(true, transaction, null, path, true, PathFormat.RelativePath));
 }
Ejemplo n.º 2
0
 public static DateTime GetChangeTimeUtc(SafeFileHandle safeHandle)
 {
     return(File.GetChangeTimeInternal(true, null, safeHandle, null, true, PathFormat.RelativePath));
 }
Ejemplo n.º 3
0
 public static DateTime GetChangeTime(KernelTransaction transaction, string path, PathFormat pathFormat)
 {
     return(File.GetChangeTimeInternal(true, transaction, null, path, false, pathFormat));
 }
Ejemplo n.º 4
0
 public static DateTime GetChangeTimeUtc(string path)
 {
     return(File.GetChangeTimeInternal(true, null, null, path, true, PathFormat.RelativePath));
 }
Ejemplo n.º 5
0
 public static DateTime GetChangeTime(string path, PathFormat pathFormat)
 {
     return(File.GetChangeTimeInternal(true, null, null, path, false, pathFormat));
 }