文档目录
在文件末尾写入一行字符串
int fileWriteLine(string filePath, string txt);
文件路径
要写入的字符串
0表示成功。
// 在SD卡的txt文件Data末尾行写入字符串“a12”,字符串可替换为文本控件的txt属性。 fileWriteLine("Data.txt", "a12");