예제 #1
0
 public static DateTime GetCreationTimeUtcTransacted(KernelTransaction transaction, string path)
 {
     return(File.GetCreationTimeCore(transaction, path, true, PathFormat.RelativePath));
 }
예제 #2
0
 public static DateTime GetCreationTimeUtc(string path, PathFormat pathFormat)
 {
     return(File.GetCreationTimeCore(null, path, true, pathFormat));
 }
예제 #3
0
 public static DateTime GetCreationTimeTransacted(KernelTransaction transaction, string path, PathFormat pathFormat)
 {
     return(File.GetCreationTimeCore(transaction, path, false, pathFormat).ToLocalTime());
 }
예제 #4
0
 public static DateTime GetCreationTime(string path, PathFormat pathFormat)
 {
     return(File.GetCreationTimeCore(null, path, false, pathFormat).ToLocalTime());
 }