File.GetLastWriteTimeUtc(String)是一个内置的File类方法,该方法用于以协调世界时(UTC)返回指定文件或目录的最后写入日期和时间。
用法:
public static DateTime GetLastWriteTimeUtc (string path);
参数:该函数接受如下所示的参数:
- path: This is the specified file path.
异常:
- UnauthorizedAccessException:调用者没有所需的权限。
- ArgumentException:路径为长度为零的字符串,仅包含空格,或者由InvalidPathChars定义的一个或多个无效字符。
- ArgumentNullException:路径为空。
- PathTooLongException:给定的路径,文件名或两者都超过了system-defined的最大长度。
- NotSupportedException:路径格式无效。
返回值:返回指定的文件或目录最后写入的日期和时间(以协调世界时(UTC))。
下面是说明File.GetLastWriteTimeUtc(String)方法的程序。
程序1:在运行下面的代码之前,将创建一个文件file.txt,其内容如下所示:
// C# program to illustrate the usage
// of File.GetLastWriteTimeUtc(String) method
// Using System and System.IO namespaces
using System;
using System.IO;
class GFG {
public static void Main()
{
// Specifing a file
string myfile = @"file.txt";
// Calling GetLastWriteTimeUtc() function
DateTime dt = File.GetLastWriteTimeUtc(myfile);
// Getting the last write time in UTC
Console.WriteLine("The last write time in "+
"UTC for this file was {0}.", dt);
}
}
执行中:
The last write time in UTC for this file was 4/3/2020 12:00:00 AM.
程序2:在运行以下代码之前,创建了一个文件,如下所示:
// C# program to illustrate the usage
// of File.GetLastWriteTimeUtc(String) method
// Using System and System.IO namespaces
using System;
using System.IO;
class GFG {
public static void Main()
{
// Specifing a file
string myfile = @"file.txt";
// Setting the date
File.SetLastWriteTime(myfile, new DateTime(2020, 4, 3));
// Calling GetLastWriteTimeUtc() function
DateTime dt = File.GetLastWriteTimeUtc(myfile);
// Getting the last write time in UTC
Console.WriteLine("The last write time in"+
" UTC for this file was {0}.", dt);
}
}
执行中:
The last write time in UTC for this file was 4/3/2020 12:00:00 AM.
相关用法
- C# MathF.Cos()用法及代码示例
- C# MathF.Sin()用法及代码示例
- C# MathF.Min()用法及代码示例
- C# MathF.Max()用法及代码示例
- C# MathF.Log()用法及代码示例
- C# MathF.Abs()用法及代码示例
- C# MathF.Exp()用法及代码示例
- C# MathF.Pow()用法及代码示例
- C# MathF.Tan()用法及代码示例
- C# Int16.Equals用法及代码示例
- C# SByte.Equals用法及代码示例
- C# UInt16.GetHashCode用法及代码示例
- C# SByte.GetTypeCode用法及代码示例
- C# SByte.GetHashCode用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 File.GetLastWriteTimeUtc() Method in C# with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。