一直使用经典版本的选择文件夹对话框
文章插图
代码如下:
function SelectDirectory(const Caption: string; const Root: WideString; var Directory: string): Boolean;
var
WindowList: Pointer;
BrowseInfo: TBrowseInfo;
Buffer: PChar;
OldErrorMode: Cardinal;
RootItemIDList, ItemIDList: PItemIDList;
【Delphi11 使用windows新版的文件夹选择对话框】ShellMalloc: IMalloc;
IDesktopFolder: IShellFolder;
Eaten, Flags: LongWord;
begin
Result := False;
if not DirectoryExists(Directory) then
Directory := ”;
FillChar(BrowseInfo, SizeOf(BrowseInfo), 0);
if (ShGetMalloc(ShellMalloc) = S_OK) and (ShellMalloc <> nil) then
begin
Buffer := ShellMalloc.Alloc(MAX_PATH);
try
RootItemIDList := nil;
if Root <> ” then
begin
SHGetDesktopFolder(IDesktopFolder);
IDesktopFolder.ParseDisplayName(Application.Handle, nil, POleStr(Root), Eaten, RootItemIDList, Flags);
end;
with BrowseInfo do
begin
hwndOwner := Application.Handle;
pidlRoot := RootItemIDList;
pszDisplayName := Buffer;
lpszTitle := PChar(Caption);
ulFlags := BIF_RETURNONLYFSDIRS or BIF_NEWDIALOGSTYLE;
if Directory <> ” then
begin
lpfn := SelectDirCB;
lParam := Integer(PChar(Directory));
end;
end;
WindowList := DisableTaskWindows(0);
OldErrorMode := SetErrorMode(SEM_FAILCRITICALERRORS);
try
ItemIDList := ShBrowseForFolder(BrowseInfo);
finally
SetErrorMode(OldErrorMode);
EnableTaskWindows(WindowList);
end;
Result := ItemIDList <> nil;
if Result then
begin
ShGetPathFromIDList(ItemIDList, Buffer);
ShellMalloc.Free(ItemIDList);
Directory := Buffer;
end;
finally
ShellMalloc.Free(Buffer);
end;
end;
end;
说实话该对话框应该被淘汰了,最新的文件夹选择对话框代码量少,用户界面也非常友好 。
文章插图
代码如下:
with TFileOpenDialog.Create(nil) do
try
Options := [fdoPickFolders];
if Execute then
begin
showmessage(filename);
end;
finally
Free;
end;
做个笔记以防忘记 。
- 每个开发人员都应该知道的 Unix/Linux 命令组合,使用他们节省时间
- new bing 最新访问方式,使用命令行访问,不需要魔法
- 照片压缩软件免费版怎么使用?照片压缩方法分享
- 生根粉的5个正确使用方法 ?生根剂的作用和使用方法
- 制作书单视频的免费软件的使用方法,先收藏一下
- 绝对不能不会的4个Excel实用公式,每一个公式的使用率都高达95%
- 这7款装机必备的Windows软件,我敢说,个个都是精品中的精品!
- 借同事电脑怕文件泄露?这两个加密文件的小妙招,建议收藏使用!
- 警惕教条化使用离婚冷静期 ?女方出轨离婚需要冷静期吗
- 10个CAD常见技巧,特别管用