開いている Windows エクスプローラ ウィンドウのハンドルを持っています。
例: m:\programs から d:\programs へのパスを変更するためにコマンドを送信するにはどうすればよいですか。
今まで使ってShellExecute()
いたのですが、別ウィンドウが開きます。これはよくありません (ユーザー エクスペリエンス)。
開いている Windows エクスプローラ ウィンドウのハンドルを持っています。
例: m:\programs から d:\programs へのパスを変更するためにコマンドを送信するにはどうすればよいですか。
今まで使ってShellExecute()
いたのですが、別ウィンドウが開きます。これはよくありません (ユーザー エクスペリエンス)。
次の関数は、指定されたハンドル (存在する場合)BrowseToFolder
の Windows エクスプローラーの既存のインスタンスをフォルダー (存在する場合) に移動します。2 番目のパラメーターを指定しない場合は、一番上のウィンドウを使用してナビゲートする必要があります (または、少なくともドキュメントではそう主張されています。実際には、最も古い既存のウィンドウが使用されるようです)。ナビゲーションが成功した場合、関数は True を返し、それ以外の場合は False を返します。AHandle
AFolderPath
uses
ActiveX, ShlObj, ShellAPI, SHDocVw;
const
IID_IServiceProvider: TGUID = '{6D5140C1-7436-11CE-8034-00AA006009FA}';
SID_STopLevelBrowser: TGUID = '{4C96BE40-915C-11CF-99D3-00AA004AE837}';
function GetItemIDListFromPath(const AFolderPath: WideString): PItemIDList;
var
Count: ULONG;
Attributes: ULONG;
ShellFolder: IShellFolder;
begin
Result := nil;
if Succeeded(SHGetDesktopFolder(ShellFolder)) then
begin
Count := 0;
if Failed(ShellFolder.ParseDisplayName(0, nil, PWideChar(AFolderPath),
Count, Result, Attributes))
then
Result := nil;
end;
end;
function BrowseToFolder(const AFolderPath: WideString;
AHandle: HWND = HWND_TOPMOST): Boolean;
var
I: Integer;
WndIface: IDispatch;
ItemIDList: PItemIDList;
ShellBrowser: IShellBrowser;
ShellWindows: IShellWindows;
WebBrowserApp: IWebBrowserApp;
ServiceProvider: IServiceProvider;
begin
Result := False;
if Succeeded(CoCreateInstance(CLASS_ShellWindows, nil, CLSCTX_LOCAL_SERVER,
IID_IShellWindows, ShellWindows)) then
begin
for I := 0 to ShellWindows.Count - 1 do
begin
if (AHandle <> HWND_TOPMOST) then
WndIface := ShellWindows.Item(VarAsType(I, VT_I4))
else
WndIface := ShellWindows.Item(VarAsType(SWC_EXPLORER, VT_UI4));
if Succeeded(WndIface.QueryInterface(IID_IWebBrowserApp,
WebBrowserApp)) then
begin
if (AHandle = HWND_TOPMOST) or (WebBrowserApp.HWnd = AHandle) then
begin
if Succeeded(WebBrowserApp.QueryInterface(IID_IServiceProvider,
ServiceProvider)) then
begin
if Succeeded(ServiceProvider.QueryService(SID_STopLevelBrowser,
IID_IShellBrowser, ShellBrowser)) then
begin
ItemIDList := GetItemIDListFromPath(AFolderPath);
Result := Succeeded(ShellBrowser.BrowseObject(ItemIDList,
SBSP_SAMEBROWSER or SBSP_ABSOLUTE));
end;
end;
Break;
end;
end;
end;
end;
end;
使用例は次のとおりです。
procedure TForm1.Button1Click(Sender: TObject);
var
ExplorerHandle: HWND;
begin
ExplorerHandle := 123456;
if not BrowseToFolder('c:\Windows\System32\', ExplorerHandle) then
ShowMessage('Navigation to a folder failed!')
else
ShowMessage('Navigation to a folder succeeded!');
end;
これが私がインスピレーションを得たものですcomplete testing project
。the blog post