📜  C#中的File.Delete()方法与示例

📅  最后修改于: 2021-05-29 19:46:49             🧑  作者: Mango

File.Delete(String)是一个内置的File类方法,用于删除指定的文件。
句法:

public static void Delete (string path);

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

例外情况:

  • ArgumentException:路径是长度为零的字符串,仅包含空格,或者由InvalidPathChars定义的一个或多个无效字符。
  • ArgumentNullException:路径为null。
  • DirectoryNotFoundException:给定的路径无效。
  • IOException:给定的文件正在使用中。或者文件上有打开的句柄,并且操作系统是Windows XP或更早版本。枚举目录和文件可能会导致此打开的句柄。有关更多信息,请参见如何:枚举目录和文件。
  • NotSupportedException:路径格式无效。
  • PathTooLongException:给定的路径,文件名或两者都超过了系统定义的最大长度。
  • UnauthorizedAccessException:调用者没有所需的权限。或者该文件是正在使用的可执行文件。或路径是目录。或路径指定了一个只读文件。

下面是说明File.Delete(String)方法的程序。
程序1:在运行下面的代码之前,将创建一个文件file.txt ,其内容如下所示:

file.txt

CSharp
// C# program to illustrate the usage
// of File.Delete(String) method
 
// Using System and System.IO namespaces
using System;
using System.IO;
 
public class GFG {
    // Using main() function
    public static void Main()
    {
        // Specifying a file
        String myfile = @"file.txt";
 
        // Calling the Delete() function to
        // delete the file file.txt
        File.Delete(myfile);
 
        // Printing a line
        Console.WriteLine("Specified file has been deleted");
    }
}


CSharp
// C# program to illustrate the usage
// of File.Delete(String) method
 
// Using System and System.IO namespaces
using System;
using System.IO;
 
public class GFG {
    // Using main() function
    public static void Main()
    {
        // Specifying two files
        String myfile1 = @"file.txt";
        String myfile2 = @"gfg.txt";
 
        // Calling the Delete() function to
        // delete the file file.txt and gfg.txt
        File.Delete(myfile1);
        File.Delete(myfile2);
 
        // Printing a line
        Console.WriteLine("Specified files have been deleted.");
    }
}


执行中:

mcs -out:main.exe main.cs
mono main.exe
Specified file has been deleted

运行上面的代码后,将显示上面的输出,并且文件file.txt已被删除。
程序2:在运行下面的代码之前,已创建两个文件,如下所示:

file.txt

gfg.txt

尖锐的

// C# program to illustrate the usage
// of File.Delete(String) method
 
// Using System and System.IO namespaces
using System;
using System.IO;
 
public class GFG {
    // Using main() function
    public static void Main()
    {
        // Specifying two files
        String myfile1 = @"file.txt";
        String myfile2 = @"gfg.txt";
 
        // Calling the Delete() function to
        // delete the file file.txt and gfg.txt
        File.Delete(myfile1);
        File.Delete(myfile2);
 
        // Printing a line
        Console.WriteLine("Specified files have been deleted.");
    }
}

执行中:

mcs -out:main.exe main.cs
mono main.exe
Specified files have been deleted.

运行上述代码后,将显示以上输出,并且删除了两个现有文件file.txtgfg.txt