对文件操作,需要将文件临时存储在当前用户临时文件夹中:
class Bt { public void LocalTempPath() { var tempPath = System.IO.Path.GetTempPath(); Console.WriteLine(tempPath); } }
程序运行: