gpt4 book ai didi

Delphi-如何获取目录中所有文件的列表

转载 作者:行者123 更新时间:2023-12-03 14:34:14 27 4
gpt4 key购买 nike

我正在使用delphi,当我执行openpicturedialog时,我想要一个目录中所有文件的列表。

i.e., When open dialog is executed and i select one file from it, I want the list of all files from the directory of selected file.

您甚至可以建议我从 TOpenDialogFileName 属性获取目录名称
谢谢。

最佳答案

如果你使用delphi 2010那么你可以使用tdirectory.getfiles首先将ioutils.pas添加到uses子句中,然后在事件处理程序中编写以下代码行(除了该事件处理程序中已有的代码之外)

uses IOUtils;

var
path : string;
begin
for Path in TDirectory.GetFiles(OpenPictureDialog1.filename) do
Listbox1.Items.Add(Path);{assuming OpenPictureDialog1 is the name you gave to your OpenPictureDialog control}
end;

关于Delphi-如何获取目录中所有文件的列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3027561/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com