c++ builder XE4, 10.2 Tokyo > fileIO > デスクトップのパスを取得 > char buf[MAX_PATH]; / SHGetSpecialFolderPathA(HWND_DESKTOP, &buff[0], CSIDL_DESKTOP, FALSE);
1725 ワード
動作確認
C++ Builder XE4
Rad Studio 10.2 Tokyo Update 2 (追記: 2017/12/27)
デスクトップのパスを取得したい。
参考
http://stackoverflow.com/questions/17933917/get-the-users-desktop-folder-using-windows-api
Unit1.cpp
void __fastcall TForm1::Button1Click(TObject *Sender)
{
char buff[MAX_PATH];
SHGetSpecialFolderPathA(HWND_DESKTOP, &buff[0], CSIDL_DESKTOP, FALSE);
ShowMessage(String(buff));
}
Author And Source
この問題について(c++ builder XE4, 10.2 Tokyo > fileIO > デスクトップのパスを取得 > char buf[MAX_PATH]; / SHGetSpecialFolderPathA(HWND_DESKTOP, &buff[0], CSIDL_DESKTOP, FALSE);), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/a22b3fbf9f0fd4b2c1b8著者帰属:元の著者の情報は、元の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 .