From professional translators, enterprises, web pages and freely available translation repositories.
/etc/sysconfig/createfiles
/etc/sysconfig/createfiles
Last Update: 2018-02-13
Usage Frequency: 1
Quality:
*memoryid = allocatememory(1000) ; allocating a memory block if *memoryid pokes(*memoryid, "store this string in the memory area") ; we write a string into the memory block endif if createfile(0, "text.txt") ; we create a new text file... writedata(0, *memoryid, 10) ; write the first 10 chars from the memory block into the file closefile(0) ; close the previously opened file and so store the written data else debug "can't create the file!" endif
beispiel: *memoryid = allocatememory(1000) ; reservieren eines speicherblocks if *memoryid pokes(*memoryid, "store this string in the memory area") ; wir schreiben einen string in den speicherblock endif if createfile(0, "text.txt") ; wir erstellen eine neue text-datei... writedata(0, *memoryid, 10) ; die ersten 10 zeichen des speicherblocks in die datei schreiben closefile(0) ; die zuvor geöffnete datei schließen und damit die geschriebenen daten endgültig speichern else debug "konnte die datei nicht erstellen!" endif
Last Update: 2018-02-13
Usage Frequency: 1
Quality:
Warning: Contains invisible HTML formatting