我想做一个命令行应用程序,它将使用 C# 从特定目录中删除文件以对其进行编码,但我需要一个库来完成它。
问问题
83 次
4 回答
2
您可以使用System.IO.File.Delete
http://msdn.microsoft.com/en-us/library/system.io.file.delete.aspx
对于一个完整的应用程序,您可能还想查看System.IO.Directory
于 2012-07-17T17:18:04.987 回答
2
System.IO.File.Delete
命名空间你可以看到如下
Array.ForEach(Directory.GetFiles(@"c:\MyDir\"),
delegate(string path) { File.Delete(path); });
或者
using System.IO;
string[] filePaths = Directory.GetFiles(@"c:\dirname\");
foreach (string filePath in filePaths)
File.Delete(filePath)
于 2012-07-17T17:18:11.753 回答
1
System.IO.File
是包含Delete
删除文件的方法的类。
于 2012-07-17T17:17:58.700 回答
1
你在找File.Delete
吗?
于 2012-07-17T17:18:18.523 回答