Beispiel - Dateiausgabe
- Former user (Deleted)
- Dennis Balzuweit
Owned by Former user (Deleted)
Feb. 06, 2017
1 min read
Loading data...
Erläuterung
In diesem Beispiel wird ein Textfile erzeugt und zwei Zeilen in die Datei ausgegeben.
Skript
var f : TextFile; begin //... try AssignFile(f, 'c:\FileName.txt'); Try Rewrite(f); Writeln(f, 'First line.'); Append(f); Writeln(f, 'I am appending some stuff to the end of the file.'); finally CloseFile(f); end; except ShowMessage('Exception'); end; //... end;
Alternative
Text := 'First line.' + crlf + 'I am appending some stuff to the end of the file.' + crlf; SaveStringToFile('c:\FileName.txt',Text);