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 > デバッグ > 処理対象フォルダの表示 > ShellExecute(NULL, NULL, L"explorer.exe", dstDir, NULL, SW_SHOWNORMAL);

Last updated at Posted at 2016-03-11
動作確認
C++ Builder XE4 on Windows 7 pro 32bit
Rad Studio 10.2 Tokyo Update 2 (追記: 2017/12/27)

フォルダ関連の処理をしていて、そのフォルダの中身を見たいときがある。

これまでは以下をしてきた。

  • ブレークポイントで 止める
  • フォルダ名を格納した変数の中身をコピー (dstDir: String)
  • エクスプローラを起動する
  • エクスプローラのアドレス欄?にペースト + [Enter]

以下のコードを追加することにした。その処理に到達した時に自動的にフォルダが開く。

# if 1
	ShellExecute(NULL, NULL, L"explorer.exe", dstDir, NULL, SW_SHOWNORMAL);
# endif

これでテストの繰り返しが楽になった。

検索用キーワード

(追加 2017/09/20)

  • エクスプローラ
0
1
1

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?