procedure TForm1.Button1Click(Sender: TObject);
var
s,n:String;
i:Integer;
begin
s:=Application.ExeName;//取得当前执行文件名(含路径)
n:='';
ListBox1.Items.Add(s);//加入ListBox中
for i := 1 to Length(s) do
begin
if s[i]<>'/' then //路径结束标志是'/'
n:= n+s[i]//不是‘/’继续
else begin
ListBox1.Items.Add(n);//取路径完,加入列表
n:='';
end;
end;
ListBox1.Items.Add(n);//取得执行文件名,如果只要路径,可不加!
end;