System.IO.FileInfo.Delete 方法
方法描述
永久删除文件。
语法定义(C# System.IO.FileInfo.Delete 方法 的用法)
public override void Delete()
参数/返回值
参数值/返回值 | 参数类型/返回类型 | 参数描述/返回描述 |
---|---|---|
返回值 | void |
提示和注释
如果文件不存在,则此方法不执行任何操作。
Windows NT 4.0 平台说明: Delete 不删除对正常 I/O 打开的文件或映射到内存的文件。
System.IO.FileInfo.Delete 方法例子
下面的示例创建、关闭并删除文件。
using System; using System.IO; public class DeleteTest { public static void Main() { // Create a reference to a file. FileInfo fi = new FileInfo("temp.txt"); // Actually create the file. FileStream fs = fi.Create(); // Modify the file as required, and then close the file. fs.Close(); // Delete the file. fi.Delete(); } }
异常
异常 | 异常描述 |
---|---|
IOException |
|
SecurityException | 调用方没有所要求的权限。 |
UnauthorizedAccessException | 路径是目录。 |
版本信息
.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1
适用平台
Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。