writeallbytes会覆盖,没有appendallbytes,查了还有说用addallbytes的,但是也没有,怎么把allbytes写入不覆盖?
string path = Application.streamingAssetsPath + "/1.txt"; StreamWriter sw = File.AppendText(path); sw.Write("abc"); sw.Close();