hi - i need tips to create one summery-textfile from 30/31 logfiles
1.logfile
print
print
print
2.logfile
print
print
print
3.logfile
print
.....
the result-file will be:
name;1;2;3;4;.....31
petra;6;8;0;
tom;4;4;20;
tobi;3;10;0;
i need help...
textfiles -> Array -> textfile
Moderators: Dorian (MJT support), JRL
Hi Wolf,
I've only a suggestion for you. I did not try it.
In the fist step, you can read every log file till EOF (end of file). Every read line, you save/add in a separate file, named after the user (Petra, Tom and so on).
The result is that you have for example a file 'Petra' with all the results of Petra.
Now you can append al those files into one file.
I hope I send you to the right direction
-------------------
Hallo Wolf,
Ich habe nur ein Vorschlag für dich. Ich habe es noch nicht versucht.
In die Erste Schritt, kann man jeden Protokol-Datei lesen bis EOF (End Of File). Jeder Zeile speicherst du ab in ein separaten Datei, mit die Name von die Benutzer (Petra, Tom usw.).
Am Endeffekt hast du zB. eine Datei 'Petra' mit alle Daten von Petra.
Dann kannst du alle Dateien zusammenfügen (append) zu einer Datei.
Ich hoffe ich habe dich zum richtigen Seite hingeschickt.
I've only a suggestion for you. I did not try it.
In the fist step, you can read every log file till EOF (end of file). Every read line, you save/add in a separate file, named after the user (Petra, Tom and so on).
The result is that you have for example a file 'Petra' with all the results of Petra.
Now you can append al those files into one file.
I hope I send you to the right direction
-------------------
Hallo Wolf,
Ich habe nur ein Vorschlag für dich. Ich habe es noch nicht versucht.
In die Erste Schritt, kann man jeden Protokol-Datei lesen bis EOF (End Of File). Jeder Zeile speicherst du ab in ein separaten Datei, mit die Name von die Benutzer (Petra, Tom usw.).
Am Endeffekt hast du zB. eine Datei 'Petra' mit alle Daten von Petra.
Dann kannst du alle Dateien zusammenfügen (append) zu einer Datei.
Ich hoffe ich habe dich zum richtigen Seite hingeschickt.