2014年3月25日火曜日

C++でのファイルサイズの取得

C++でファイルのサイズを取得する方法.意外とateを利用した方法がなかったのでメモ.

#include <iostream>
#include <fstream>
/*!
@param[in] path path of a file
@return byte size of a file (return -1 when file cannnot open)
*/
int filesize(char const * path)
{
std::ifstream fin(path, std::ios::in | std::ios::ate);
return fin ? static_cast<int>(fin.tellg()) : -1;
}
int main()
{
std::cout << filesize("filesize.cpp") << std::endl;
}
view raw filesize.cpp hosted with ❤ by GitHub

0 件のコメント:

コメントを投稿