C#把数据写到硬盘指定位置时间:2023-03-09 07:35:25 FileStream fs; StreamWriter sw;string RootPath = @"C:\Advantech" + "\\tempData\\" + "data.txt"; fs=new FileStream(RoothPath,FileMode.Creat,FileAccess.Write)//绝对地址 sw=new StreamWriter(fs); sw.Write(data); sw.Close(); fs.Close();