C#创建临时文件的方法
本文实例讲述了C#创建临时文件的方法。分享给大家供大家参考。具体分析如下:
C#可以通过Path.GetTempFileName获得一个临时文件,然后创建自己的临时文件
using System;
using System.IO;
class MainClass {
static void Main() {
string tempFile = Path.GetTempFileName();
Console.WriteLine("Using " + tempFile);
using(FileStream fs = new FileStream(tempFile,FileMode.Open)){
// (Write some data.)
}
// Now delete the file.
File.Delete(tempFile);
}
}
希望本文所述对大家的C#程序设计有所帮助。
以上是 C#创建临时文件的方法 的全部内容, 来源链接: utcz.com/z/354182.html