File.Delete(String)是一个内置的File类方法,该方法用于删除指定的文件。
用法:
public static void Delete (string path);
参数:该函数接受如下所示的参数:
- path: This is the specified file path which is to be deleted.
异常:
- ArgumentException:路径为长度为零的字符串,仅包含空格,或者由InvalidPathChars定义的一个或多个无效字符。
- ArgumentNullException:路径为空。
- DirectoryNotFoundException:给定的路径无效。
- IOException:给定的文件正在使用中。或者文件上有打开的句柄,并且操作系统是Windows XP或更早版本。枚举目录和文件可能会导致此打开的句柄。有关更多信息,请参见如何:枚举目录和文件。
- NotSupportedException:路径格式无效。
- PathTooLongException:给定的路径,文件名或两者都超过了system-defined的最大长度。
- UnauthorizedAccessException:调用者没有所需的权限。或者该文件是正在使用的可执行文件。或路径是目录。或路径指定了一个只读文件。
下面是说明File.Delete(String)方法的程序。
程序1:在运行下面的代码之前,将创建一个文件file.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()
{
// Specifing 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");
}
}
执行中:
mcs -out:main.exe main.cs mono main.exe Specified file has been deleted
运行上述代码后,将显示以上输出,并且文件file.txt已被删除。
程序2:在运行以下代码之前,已创建两个文件,如下所示:
// 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()
{
// Specifing 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.txt和gfg.txt。
相关用法
- C# MathF.Cos()用法及代码示例
- C# MathF.Sin()用法及代码示例
- C# MathF.Min()用法及代码示例
- C# MathF.Max()用法及代码示例
- C# MathF.Log()用法及代码示例
- C# MathF.Abs()用法及代码示例
- C# MathF.Exp()用法及代码示例
- C# MathF.Pow()用法及代码示例
- C# MathF.Tan()用法及代码示例
- C# Int16.Equals用法及代码示例
- C# SByte.Equals用法及代码示例
- C# UInt16.GetHashCode用法及代码示例
- C# SByte.GetTypeCode用法及代码示例
- C# SByte.GetHashCode用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 File.Delete() Method in C# with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。