当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# File.SetLastAccessTime()用法及代码示例


File.SetLastAccessTime(String,DateTime)是一个内置的File类方法,该方法用于设置最后一次访问指定文件的日期和时间。

用法:

public static void SetLastAccessTime (string path, DateTime lastAccessTime);

参数:此函数接受两个参数,如下所示:



  • path: This is the file for which to set the access date and time information.
  • lastAccessTime: This is the specified last access local date and time.

异常:

  • ArgumentException:路径为长度为零的字符串,仅包含空格,或者由InvalidPathChars定义的一个或多个无效字符。
  • ArgumentNullException:路径为空。
  • PathTooLongException:指定的路径,文件名或两者都超过了system-defined的最大长度。
  • FileNotFoundException:找不到指定的路径。
  • UnauthorizedAccessException:调用者没有所需的权限。
  • NotSupportedException:路径格式无效。
  • ArgumentOutOfRangeException:lastAccessTime指定一个超出此操作允许的日期或时间范围的值。

下面是说明File.SetLastAccessTime(String,DateTime)方法的程序。

程序1:在运行下面的代码之前,将创建一个文件file.txt,其内容如下所示:

file.txt

// C# program to illustrate the usage 
// of File.SetLastAccessTime() 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 the SetLastAccessTime() function 
        // to set last access date and time 
        File.SetLastAccessTime(myfile, new DateTime(2020, 5, 4, 4, 5, 7)); 
  
        // Getting the last access date and time 
        DateTime dt = File.GetLastAccessTime(myfile); 
        Console.WriteLine("The last access date and"+ 
                 " time for this file was {0}.", dt); 
    } 
}

输出:

The last access date and time for this file was 5/4/2020 4:05:07 AM.

程序2:最初,没有创建文件。下面的代码本身创建了一个文件file.txt并显示了上次访问的日期和时间。

// C# program to illustrate the usage 
// of File.SetLastAccessTime() method 
  
// Using System and System.IO namespaces 
using System; 
using System.IO; 
  
class GFG { 
    public static void Main() 
    { 
        // Specifing a file 
        string path = @"file.txt"; 
  
        // Checking the existance of the file 
        if (!File.Exists(path)) { 
            File.Create(path); 
        } 
  
        // Calling the SetLastAccessTime() function 
        // to set last access date and time 
        File.SetLastAccessTime(path, new DateTime(2019, 5, 4, 4, 5, 7)); 
  
        // Getting the last access date and time 
        DateTime dt = File.GetLastAccessTime(path); 
        Console.WriteLine("The last access date and "+ 
                  "time for this file was {0}.", dt); 
    } 
}

输出:

The last access date and time for this file was 5/4/2019 4:05:07 AM.



相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 File.SetLastAccessTime() Method in C# with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。