Skip to main content
Skip table of contents

MemoRead()


MemoRead() – Datei als Memo einlesen



Die Funktion liest eine komplette Datei als Memo ein und gibt deren Inhalt zurück.


ParameterBeschreibung

aFilename:C

Dateiname und Pfad


Rückgabewert


Alphanumerisch

Beispiel


CODE
| aFileName, aFile, aPath |

aPath     := 'c:\temp\',
aFileName := 'test.txt',

if !DirectoryExists(aPath) then
   CreateDir(aPath)
endif,

startseq,
   aFile := FOpen(aPath + aFilename, FO_CREATE),
   FWriteLn(aFile, 'Dontenwill AG'),
   FWriteLn(aFile, 'Datum ' + DToC(Date())),
   FClose(aFile)
onerror,
stopseq,

MemoRead(aPath + aFileName)   

// Ergebnis: 'Dontenwill AG'
//           'Datum 26.02.22'
// Hinweis:  Als Datum wird natürlich das aktuelle Tagesdatum ausgegeben.
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.