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


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


File.Move()是內置的File類方法,用於將指定的文件移動到新位置。此方法還提供了指定新文件名的選項。

用法:

public static void Move (string sourceFileName, string destFileName);

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



  • sourceFileName: This is the specified source file which are going to be moved. It can be absolute or relative path.
  • destFileName: This is the specified destination file where source file is going to be moved.

異常:

  • IOException:destFileName已經存在。
  • FileNotFoundException:找不到sourceFileName。
  • ArgumentNullException:sourceFileName或destFileName為null。
  • ArgumentException:sourceFileName或destFileName是長度為零的字符串,僅包含空格或InvalidPathChars中定義的無效字符。
  • UnauthorizedAccessException:調用者沒有所需的權限。
  • PathTooLongException:給定的路徑,文件名或兩者都超過了system-defined的最大長度。
  • DirectoryNotFoundException:在sourcefilename或destFileName中指定的路徑無效。
  • NotSupportedException:sourceFileName或destFileName格式無效。

下麵是說明File.Move()方法的程序。

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

file.txt

// C# program to illustrate the usage 
// of File.Move() method 
  
// Using System and System.IO namespaces 
using System; 
using System.IO; 
  
class GFG { 
    static void Main() 
    { 
        try { 
            // Moving the file file.txt to location C:\gfg.txt 
            File.Move(@"file.txt", @"C:\gfg.txt"); 
            Console.WriteLine("Moved"); 
        } 
        catch (IOException ex) { 
            Console.WriteLine(ex); 
        } 
    } 
}

輸出:

Moved

運行上述代碼後,將顯示以上輸出,並將現有文件file.txt移動到新位置C:\ gfg.txt,如下所示-

C:\gfg.txt

程序2:最初沒有創建文件。

// C# program to illustrate the usage 
// of File.Move() method 
  
// Using System and System.IO namespaces 
using System; 
using System.IO; 
  
class GFG { 
    static void Main() 
    { 
        try { 
            // If file.txt is not found 
            // then an exception will be shown 
            File.Move(@"file.txt", @"C:\gfg.txt"); 
            Console.WriteLine("Moved"); 
        } 
        catch (IOException ex) { 
            Console.WriteLine(ex); 
        } 
    } 
}

運行時錯誤:

System.IO.FileNotFoundException:Could not find file ‘/home/runner/NutritiousHeavyRegression/file.txt’.
File name:‘/home/runner/NutritiousHeavyRegression/file.txt’
at System.IO.File.Move (System.String sourceFileName, System.String destFileName) [0x0007c] in:0
at GFG.Main () [0x00000] in:0




相關用法


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