如何在C#中删除由TempFileCollection创建的.tmp文件?
TempInputCollection = new TempFileCollection("TempDirectoryPathHere", true);
string TempFile = TempInputCollection.AddExtension("xml");
问题是,当我决定保留临时文件时,不仅有.xml 文件,但只有我没有创建的.tmp文件。我如何摆脱.tmp文件 当我决定将临时文件保存在这里时,只保留我的.xml文件?
答案 0 :(得分:1)
将此添加到使用指令using System.IO;
File.Delete("File path");
试试这段代码......