linux讀寫檔案 簡單版
程式碼
//write
void write_file(const std::string file_name){
FILE *fp = nullptr;
fp = fopen(file_name.c_str(),"w+");
fprintf(fp,"This is testing for mutex\n");
fclose(fp);
}
//read
void read_file(const std::string file_name){
std::ifstream fp(file_name,std::ios::binary);
std::stringstream ss;
ss << fp.rdbuf();
std::cout << ss.str() << std::endl;
fp.close();
}
相關文章
- python讀寫excel檔案簡單應用PythonExcel
- Linux核心中讀寫檔案Linux
- 簡單介紹python程式設計之檔案讀寫Python程式設計
- js讀寫二進位制檔案簡單程式碼例項JS
- javascript讀寫二進位制檔案簡單程式碼例項JavaScript
- linux/windows 讀寫ini配置檔案LinuxWindows
- 檔案讀寫
- 教你如何運用python實現簡單檔案讀寫函式Python函式
- 關於檔案讀寫使用RandomAccessFile類的一些簡單操作randomMac
- 檔案排版(文字檔案讀寫)
- 簡單讀取XML檔案中的值XML
- Golang 讀、寫檔案Golang
- keras讀寫檔案Keras
- perl 讀寫檔案
- 檔案讀寫IO
- 檔案的讀寫
- 檔案讀寫網路IO簡單瞭解,同步IO和非同步IO非同步
- 寫了一個簡單的Linux Shell用來下載檔案Linux
- Linux檔案讀、寫、執行許可權Linux
- python讀取docx檔案,就是如此簡單Python
- Python 簡明教程 --- 24,Python 檔案讀寫Python
- C中檔案基本讀寫操作(單字元,多字元)字元
- 「Python」:檔案讀寫Python
- Python——檔案讀寫Python
- Python 讀寫檔案Python
- C++檔案讀寫C++
- 普通檔案的讀寫
- 【Java】讀寫文字檔案Java
- c fopen檔案讀寫
- 讀寫iOS XML檔案iOSXML
- Python讀寫檔案Python
- C++讀寫檔案C++
- Linux 核心驅動中對檔案的讀寫Linux
- VBA建立文字檔案、讀寫文字檔案
- 檔案操作之按照行讀寫檔案
- SQL Server中讀取XML檔案的簡單做法SQLServerXML
- 簡單實現Windows和Linux檔案共享WindowsLinux
- iOS 簡單資料的讀寫iOS