6,834
edits
No edit summary |
(co) |
||
Line 10: | Line 10: | ||
|returnInfo = the text fetched, as a string, which could be an empty string if the file is blank, or null if a failure occurred (e.g. if the file was not found, or the file can't be opened) | |returnInfo = the text fetched, as a string, which could be an empty string if the file is blank, or null if a failure occurred (e.g. if the file was not found, or the file can't be opened) | ||
|returnFail1 = null n/a | |returnFail1 = null n/a | ||
|example = <code> | |||
let data = loadTextFile(filePath); | |||
if(data === null) | |||
console.log('Failed to load text file.'); | |||
else | |||
console.log('File data: '+data); | |||
</code> | |||
}} | }} |
edits