C++ Builder 10.2 Tokyo > datetime > FileAge() > W8111 非推奨のエンティティ '_fastcall FileAge(const UnicodeString)' にアクセスしている
動作環境
Rad Studio 10.2 Tokyo Update 2
メモ: FileAge の最初のオーバーロードは、廃止予定です。 代わりに FileAge の 2 つ目のオーバーロードを使用してください。
Unit1.cpp
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button1Click(TObject *Sender)
{
String filepath = L"test.txt";
// 1つ目のオーバーロード
int fileAge = FileAge(filepath);
TDateTime filedt1 = FileDateToDateTime(fileAge);
// 2つ目のオーバーロード
TDateTime filedt2;
bool res = FileAge(filepath, filedt2, /*FollowLink=*/true);
}
//---------------------------------------------------------------------------
1つ目のオーバーロードは廃止予定なので、2つ目を使う方がいいとのこと。
実際に実行したところ、2つの取得により秒の値に違いはある。
Author And Source
この問題について(C++ Builder 10.2 Tokyo > datetime > FileAge() > W8111 非推奨のエンティティ '_fastcall FileAge(const UnicodeString)' にアクセスしている), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/6eaa3714caa72702189c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .