//在mfc中使用前請先至Stdafx.h 宣告定義
#define _CRT_SECURE_NO_WARNINGS
---------以下為範例--------------------------
FILE *pFile; char cbuffer[] = { 'h','e','l' ,'l' ,'o' }; pFile = fopen("hello.txt", "w"); if (pFile == NULL) { MessageBox(L"empty"); } else { fwrite(cbuffer,1, sizeof(cbuffer), pFile); } fclose(pFile);
測試環境:2015--mfc
參考以下:
FILE * fopen ( const char * filename, const char * mode );
沒有留言:
張貼留言