スポンサーリンク
Visual C++ 向けサンプルコード
#include <iostream> #include <fstream> int main( ) { using namespace std; wofstream testfile( "c:\\temp\\test.txt" ); testfile << L"wofstream test"; //ファイルの出力ポインタの場所をセット wstreampos p = testfile.tellp( ); cout << "ファイルの出力ポインタの場所:" << p << endl; }
[Visual C++ サンプルコード | 即戦力ソース集に戻る]
本サンプルコードではエラー処理を省略している場合があります。実践で使用する場合はエラー処理が必要となる場合があります。