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
- 簡單介紹python程式設計之檔案讀寫Python程式設計
- 教你如何運用python實現簡單檔案讀寫函式Python函式
- Python 簡明教程 --- 24,Python 檔案讀寫Python
- Linux檔案讀、寫、執行許可權Linux
- 關於檔案讀寫使用RandomAccessFile類的一些簡單操作randomMac
- 檔案排版(文字檔案讀寫)
- python讀取docx檔案,就是如此簡單Python
- Golang 讀、寫檔案Golang
- Python 讀寫檔案Python
- Python——檔案讀寫Python
- keras讀寫檔案Keras
- 「Python」:檔案讀寫Python
- 檔案的讀寫
- python讀寫excel檔案PythonExcel
- C++讀寫檔案C++
- 普通檔案的讀寫
- python檔案讀寫操作Python
- C++檔案讀寫C++
- Linux的檔案系統與Shell簡單命令Linux
- 簡單介紹Linux環境變數檔案Linux變數
- Windows拉取linux上面檔案的簡單方法WindowsLinux
- VBA建立文字檔案、讀寫文字檔案
- Linux-檔案寫入和檔案同步Linux
- 讀取檔案流並寫入檔案流
- Python:讀寫檔案(I/O) | 組織檔案Python
- 超級簡單的實現window共享Linux檔案Linux
- 簡單介紹一下 Linux 檔案系統?Linux
- nodejs xmlreader 讀寫xml檔案NodeJSXML
- Python中的檔案讀寫Python
- C++檔案讀寫操作C++
- Golang對檔案讀寫操作Golang
- Java 字元流檔案讀寫Java字元
- C語言-檔案讀寫C語言
- Perl讀寫檔案&字串操作字串
- Python 檔案讀寫(Python IO)Python
- c風格讀寫檔案
- java 讀寫 ini 配置檔案Java