C# 程序查看文件的访问日期和时间
给定一个文件,我们的任务是查看访问文件的日期和时间。为此,我们使用 FileSystemInfo 类的以下属性:
1. CreationTime:该属性用于获取文件创建的时间。
语法:
file.CreationTime
其中文件是文件的路径,它将返回日期时间。 DateTime 结构设置为指定文件的日期和时间。
2. LastAccessTime:该属性用于获取文件最后被使用/访问的时间。
语法:
file.LastAccessTime
它将返回一个 DateTime,它表示访问当前文件的时间。
3. LastWriteTime:该属性用于获取文件或目录最后一次写入/更新的时间。
语法:
file.LastWriteTime
它将返回一个 DateTime,它表示当前文件中最后一次写入的时间。
方法
1. Read the file by using the file path i.e., C://sravan//data.txt
2. Declare DateTime variable for accessing file time details using the CreationTime property.
3. Get the file last access time using the LastAccessTime property.
4. Get the file lastly written time using the LastWriteTime property.
createdtime = path.LastWriteTime
例子:
在本例中,我们将在 C 盘中创建一个包含两行数据的文件,文件名为 data.txt,路径如下图所示:
C#
DateTime createdtime = path.CreationTime
输出:
createdtime = path.LastAccessTime