📜  C#中的File.GetCreationTime()方法(带示例)

📅  最后修改于: 2021-05-29 13:40:20             🧑  作者: Mango

File.GetCreationTime(String)是一个内置的File类方法,该方法用于返回指定文件或目录的创建日期和时间。

句法:

public static DateTime GetCreationTime (string path);

参数:该函数接受如下所示的参数:

例外情况:

  • UnauthorizedAccessException:调用者没有所需的权限。
  • ArgumentException:路径是长度为零的字符串,仅包含空格,或者由InvalidPathChars定义的一个或多个无效字符。
  • ArgumentNullException:路径为null。
  • PathTooLongException:给定的路径,文件名或两者都超过了系统定义的最大长度。
  • NotSupportedException:路径格式无效。

返回值:返回指定文件或目录的创建日期和时间。

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

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

file.txt

// C# program to illustrate the usage
// of File.GetCreationTime(String) method
  
// Using System and System.IO namespaces
using System;
using System.IO;
  
class GFG {
    static void Main(string[] args)
    {
        // Calling the GetCreationTime() function
        DateTime fileCreatedDate = File.GetCreationTime(@"file.txt");
  
        // Printing the creation date and time of the
        // specified file
        Console.WriteLine("File created on: " + fileCreatedDate);
    }
}

执行中:

File created on: 4/19/2020 4:02:54 AM

程序2:在运行下面的代码之前,创建了两个文件,如下所示:

file.txt

gfg.txt

// C# program to illustrate the usage
// of File.GetCreationTime(String) method
  
// Using System and System.IO namespaces
using System;
using System.IO;
  
class GFG {
    static void Main(string[] args)
    {
        // Calling the GetCreationTime() function
        DateTime fileCreatedDate1 = File.GetCreationTime(@"file.txt");
        DateTime fileCreatedDate2 = File.GetCreationTime(@"gfg.txt");
  
        // Printing the creation date and time of the
        // specified file
        Console.WriteLine("File created on: " + fileCreatedDate1);
        Console.WriteLine("File created on: " + fileCreatedDate2);
    }
}

执行中:

File created on: 4/19/2020 4:02:54 AM
File created on: 4/19/2020 4:07:02 AM