當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C# File.SetCreationTime()用法及代碼示例


File.SetCreationTime(String,DateTime)是一個內置的File類方法,用於設置創建文件的本地日期和時間。

用法:

public static void SetCreationTime (string path, DateTime creationTime);

參數:此函數接受兩個參數,如下所示:



  • path: The specified file for which to set the creation date and time information.
  • creationTime: The local Date and time containing the value to set for the creation of path.

異常:

  • FileNotFoundException:找不到指定的路徑。
  • ArgumentException:路徑為長度為零的字符串,僅包含空格,或者由InvalidPathChars定義的一個或多個無效字符。
  • ArgumentNullException:路徑為空。
  • PathTooLongException:指定的路徑,文件名或兩者都超過了system-defined的最大長度。
  • IOException:執行該操作時發生I /O錯誤。
  • ArgumentOutOfRangeException:creationTime指定一個值,該值超出此操作允許的日期,時間或兩者都超出。
  • UnauthorizedAccessException:調用者沒有所需的權限。
  • NotSupportedException:路徑格式無效。

下麵是說明File.SetCreationTime(String,DateTime)方法的程序。

程序1:在運行下麵的代碼之前,將創建一個文件file.txt,其內容如下所示:

file.txt

// C# program to illustrate the usage 
// of File.SetCreationTime(String, DateTime) method 
  
// Using System and System.IO namespaces 
using System; 
using System.IO; 
  
class GFG { 
    static void Main() 
    { 
        // Specifing a new date and time 
        DateTime D1 = new DateTime(2017, 12, 25, 2, 6, 8); 
  
        // Calling SetCreationTime() function 
        // to set the new date and time 
        File.SetCreationTime("file.txt", D1); 
  
        // Calling the GetCreationTime() function 
        // to get the creation date and time 
        DateTime D2 = File.GetCreationTime("file.txt"); 
        Console.WriteLine("The File Creation Time is:" + D2.ToString()); 
    } 
}

輸出:

The File Creation Time is:25/12/2017 02:06:08 AM

程序2:在運行下麵的代碼之前,將創建一個文件file.txt,其內容如下所示:

file.txt

// C# program to illustrate the usage 
// of File.SetCreationTime(String, DateTime) method 
  
// Using System and System.IO namespaces 
using System; 
using System.IO; 
  
class GFG { 
    static void Main() 
    { 
        // Calling the GetCreationTime() function to 
        // get the original file creation date and time 
        DateTime D1 = File.GetCreationTime("file.txt"); 
        Console.WriteLine("File Creation Old Time is:" + D1.ToString()); 
  
        // Specifying a new date and time 
        DateTime D2 = new DateTime(2017, 12, 25, 2, 6, 8); 
  
        // Calling SetCreationTime() function 
        // to set the new date and time 
        File.SetCreationTime("file.txt", D2); 
  
        // Calling the GetCreationTime() function 
        // to get the new creation date and time 
        DateTime D3 = File.GetCreationTime("file.txt"); 
        Console.WriteLine("File Creation new Time is:" + D3.ToString()); 
    } 
}

輸出:

File Creation Old Time is:4/25/2020 11:26:14 AM
File Creation new Time is:25/12/2017 02:06:08 AM



相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 File.SetCreationTime() Method in C# with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。