主頁 > 知識庫 > Lua讀寫文件代碼示例

Lua讀寫文件代碼示例

熱門標簽:武漢外呼防封系統(tǒng)多少錢 地圖標注大廈 冀州市地圖標注 百度地圖標注早餐區(qū)域 新岸線智能電銷機器人 清朝地圖標注哈爾濱 漳州智云呼電話機器人 個人怎么在地圖標注需要的店鋪 怎么去除地圖標注

讀寫文件的模式:

復制代碼 代碼如下:

r - 讀取模式w - 寫入模式(覆蓋現(xiàn)有內(nèi)容) 
a - 附加模式(附加在現(xiàn)有內(nèi)容之后) 
b - 二進制模式 
r+ - 讀取更新模式(現(xiàn)有數(shù)據(jù)保留) 
w+ - 寫入更新模式(現(xiàn)有數(shù)據(jù)擦除) 
a+ - 附加更新模式(現(xiàn)有數(shù)據(jù)保留,只在文件末尾附加) 

do 
  --read data from file 
 
  function readFile() 
    local fileHandle = assert(io.open("test.txt", "r"), "not the file"); 
    if fileHandle then 
      local outData = fileHandle:read("*all"); 
      print(outData); 
    else 
      print("false"); 
    end 
      fileHandle:close(errorInfo); 
  end 
 
  --write data to the file 
  function writeFile(dataBuffer) 
    local writeHandle = assert(io.open("write.txt", "a+"), "not the file"); 
 
    if writeHandle then 
      writeHandle:write(dataBuffer); 
      print("true"); 
    else 
      print("false"); 
    end 
 
    writeHandle:close(); 
  end 
 
 
  local inputData = 0; 
 
  repeat 
    inputData = io.read(); --write the data from io 
    writeFile(inputData); 
  until inputData == '#' 
 
 
end
您可能感興趣的文章:
  • Lua讀取和寫入文件處理例子
  • Lua文件讀寫詳解

標簽:濰坊 儋州 宣城 天門 德宏 金昌 臺灣 天門

巨人網(wǎng)絡通訊聲明:本文標題《Lua讀寫文件代碼示例》,本文關鍵詞  Lua,讀寫,文件,代碼,示例,;如發(fā)現(xiàn)本文內(nèi)容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《Lua讀寫文件代碼示例》相關的同類信息!
  • 本頁收集關于Lua讀寫文件代碼示例的相關信息資訊供網(wǎng)民參考!
  • 推薦文章