0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

c++ builder XE4, 10.2 Tokyo > datetime > ファイルの日時を取得する > FileAge()+FileDateToDateTime() / TFile::GetLastWriteTime()

Last updated at Posted at 2016-02-24
動作確認
C++ Builder XE4
RAD Studio 10.2 Tokyo Update 2 (追記: 2018/01/09)

ファイルの日時を知りたい。

FileAge()

ヘルプを探したらFileAge()というのがあった。

extern DELPHI_PACKAGE int __fastcall FileAge _DEPRECATED_ATTRIBUTE0 (const System::UnicodeString FileName)/* overload */;

そのままではint型なのでTDateTime型に変換する。
FileDateToDateTime()というのがあった。

extern DELPHI_PACKAGE System::TDateTime __fastcall FileDateToDateTime(int FileDate);

String filepath;
// filepathに実際のファイルまでのパスをセットする
int fileAge = FileAge(filepath);
TDateTime filedt = FileDateToDateTime(fileAge);

ファイル名から一発で取得する関数もあるかもしれない。

TFile::GetLastWriteTime()

こちらの方が一発で取得できる。

#include <IOUtils.hpp>
...
String filepath;
// filepathに実際のファイルまでのパスをセットする
TDateTime filedt2 = TFile::GetLastWriteTime(filepath);

XE4ヘルプ (webリンクではない)
ms-help://embarcadero.rs_xe4/libraries/System.IOUtils.TFile.html

日付といってもいくつかあるので用途によって別の関数を上記ヘルプから参照して使うとよい。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?