在delphi中如何选择文件夹?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在delphi中如何选择文件夹?相关的知识,希望对你有一定的参考价值。

在delphi中有opendialog,但是怎么调出选择文件夹的对话框?网上有人说用selectdirectory,但是要用什么其它的库吗?现在都被搞迷茫了,希望高人详细指导。

uses FileCtrl;  
  
function SelectDirectory(var Directory: string; // 英文对话框  
  Options: TSelectDirOpts; HelpCtx: Longint): Boolean; overload;  
function SelectDirectory(const Caption: string; // 中文对话框  
 const Root: WideString;  
  var Directory: string): Boolean; overload;  
  
//以下是Delphi帮助的Demo:  
  
uses FileCtrl;  
  
const  
  SELDIRHELP = 1000;  
procedure TForm1.Button1Click(Sender: TObject);  
var  
  Dir: string;  
begin  
  Dir := \'C:/MYDIR\';       // 缺省为C:/MYDIR  
  if SelectDirectory(Dir, [sdAllowCreate, sdPerformCreate, sdPrompt],SELDIRHELP) then  
    Label1.Caption := Dir; // Dir返回选择的文件夹  
end;
参考技术A 在uses里面添加filectrl
procedure TForm1.Button1Click(Sender: TObject);
var ii:string;
begin
if selectdirectory('请指定文件夹','',ii) then Label1.Caption:=ii;
end;本回答被提问者和网友采纳
参考技术B 一般这样用:
if opendialog.Execute then
begin

end;
参考技术C http://www0.ccidnet.com/tech/guide/2000/08/24/58_1097.html
看看,比较详细~

以上是关于在delphi中如何选择文件夹?的主要内容,如果未能解决你的问题,请参考以下文章

打开 Windows Explorer 目录,选择特定文件(在 Delphi 中)

delphi 在用了SelectDirectory函数操作文件夹以后如何删除被选中的文件夹?

delphi中的第三方控件如何安装

在Delphi中如何利用treeview进行视频播放

DELPHI的选择文件和文件夹

delphi中如何opendialog1.FileName;只能打开文件,如何打开目录获得目录路径