Ich habe jetzt IncludeTrallingPathDelemiter ausprobiert.
Folgender Code:
Delphi-Quellcode:
path:=jvdirectoryedit1.Text;
IncludeTrailingPathDelimiter(path);
showmessage(path);
Im jvdirectoryedit1 steht D:\test.
Also müsste in meiner ShowMessage ja dann D:\test\ drin stehen. Tuts aber nicht
Wo liegt der Fehler???
EDIT: Problem gelöst...
Delphi-Quellcode:
path:=jvdirectoryedit1.Text;
[u][b]path:=[/b][/u]IncludeTrailingPathDelimiter(path);
showmessage(path);