在opendialog中怎样读取文件名,不想要路径。希望有代码。(30分)

  • 主题发起人 主题发起人 wyrhome
  • 开始时间 开始时间
W

wyrhome

Unregistered / Unconfirmed
GUEST, unregistred user!
在opendialog中怎样读取文件名,不想要路径。希望有代码。或有什么可以代替。谢谢
 
function ExtractFileName(const FileName: string): string;
 
var
fname:string;
begin
if opendialog.execute then
fname:=ExtractFileName(opendialog.filename);
 
var
FileName:string;
begin
if opendialog.execute then
FileName:=ExtractFileName(opendialog.filename);
end
 
多人接受答案了。
 
后退
顶部