Delphi7 打开 Windows 资源管理器转到文件夹并选中指定文件

Delphi7 打开 Windows 资源管理器转到文件夹并选中指定文件.

var
  strFilePath: string;
begin
  ShellExecute(Handle, 'open', PChar('explorer.exe'), PChar('/select,' + strFilePath), nil, SW_NORMAL);
end;

 

转载于:https://www.cnblogs.com/donpps/p/4260480.html

你可能感兴趣的:(Delphi7 打开 Windows 资源管理器转到文件夹并选中指定文件)