-1
A
回答
0
在LIUNX,FOPEN沒有B方式,請參閱fopen人DOC:
r Open text file for reading. The stream is positioned at the beginning of the file.
r+ Open for reading and writing. The stream is positioned at the beginning of the file.
w Truncate file to zero length or create text file for writing. The stream is positioned at the beginning of the file.
w+ Open for reading and writing. The file is created if it does not exist, otherwise it is truncated. The stream is positioned at the beginning of the file.
a Open for appending (writing at end of file). The file is created if it does not exist. The stream is positioned at the end of the file.
a+ Open for reading and appending (writing at end of file). The file is created if it does not exist. The initial file position for reading is at the beginning of the file,
but output is always appended to the end of the file.
相關問題
- 1. 將二進制數據寫入文件
- 2. 如何導入數據庫的轉儲二進制文件
- 3. 如何將二進制數據寫入csv文件?
- 4. 如何使用Python將數據寫入二進制文件
- 5. 如何將二進制數據寫入R的csv文件
- 6. 如何使用node.js將二進制數據寫入文件?
- 7. 如何將二進制數據寫入ios中的文件
- 8. 如何將二進制數據寫入壓縮文件
- 9. 如何將「虛擬數據」寫入二進制文件?
- 10. Redis和轉義二進制數據
- 11. 如何將十六進制值寫入二進制文件
- 12. 寫入二進制數據
- 13. 寫入二進制文件?
- 14. 寫入二進制文件
- 15. 寫入二進制文件
- 16. 寫入二進制文件
- 17. 將位寫入二進制文件
- 18. 將cv :: Mat寫入二進制文件?
- 19. 將0寫入二進制文件C++
- 20. Python:將int寫入二進制文件
- 21. node js,如何將二進制文件寫入/讀取整數?
- 22. 如何寫入數據位以形成二進制文件?
- 23. 如何將二進制文件(不是UTF-8)寫入文件
- 24. 如何使用PHP將「僞」二進制文件寫入文件?
- 25. Python將二進制圖像(PNG)數據寫入文件
- 26. 將二進制數據寫入python3中的文件
- 27. 將DB數據寫入二進制文件
- 28. Matlab將圖像數據寫入二進制文件
- 29. Android,讀取二進制數據並將其寫入文件
- 30. 將垃圾數據寫入二進制文件
你想達到什麼實際出這個? –
我想知道爲什麼我用「vim」打開轉儲文件,並得到凌亂的代碼。它就像一個二進制文件,但不能用「wb」模式打開。 – lanyun
它是一個二進制文件。它並不意味着在文本編輯器中打開。 –