ファイルの作成日を取得する
バージョン 4.0 以降
ファイルの作成日を取得するには、SFXFile::GetCreateDate 関数を使用します。
SFXDate date; SFXFile::GetCreateDate(SFXPath("/data/data1.txt"), &date);
バージョン 3.0
ファイルの作成日を取得するには、SFBFileMgr::GetInfo 関数を使用します。
SFBFileMgrSmp fileMgr = SFBFileMgr::NewInstance(); FileInfo info = {0}; fileMgr->GetInfo("/data/data1.txt", &info); // ファイルの情報を取得する // ファイル作成日(1980 年1 月6 日00:00:00 グリニッジ標準時からの経過時間) UInt32 fileTime = info.dwCreationDate; SFXDate date(info.dwCreationDate); // SFXDate 形式に変換
参照 SFXFile::GetCreateDate | SFBFileMgr::NewInstance | SFBFileMgr::GetInfo