다운받을 경로를 어떻게 설정해야 하는지 잘 모르겠거든요..
지금은 다운을 클릭 할경우 이렇게 해놨는데..
var
Fp : TextFile;
FileString : String;
begin
IdFTP1.Get('Update.List', 'Update.List', true);
AssignFile( Fp,'Update.List');
Reset(Fp);
While NOT EOF(Fp) Do
Begin
ReadLn( Fp,FileString );
SplitFileData(FileString);
End;
CloseFile(Fp);
안돼거든요..
어떻게 설정을 해야할지 좀 알려주세요..
F: TextFile;
S: string;
begin
if OpenDialog1.Execute then { Display Open dialog box }
begin
AssignFile(F, OpenDialog1.FileName); { File selected in dialog box }
Reset(F);
Readln(F, S); { Read the first line out of the file }
Edit1.Text := S; { Put string in a TEdit control }
CloseFile(F);
end;
end;