Opens a file
fileOpen(filePath [, mode [, charset] [, seekable]])
→ returns any
readreadreadBinarywriteappendutf-8iso-8859-1windows-1252us-asciishift_jisiso-2022-jpeuc-jpeuc-krbig5euc-cnutf-16falsefileSeek function
// Open File
var fileObject = fileOpen("/path/to/file.txt");
// Perform Actions
try
{
// Read Line
writeOutput(fileReadLine(fileObject));
}
// Error Handling
catch(any ex)
{
// Report Exception
writeDump(ex);
}
// Always Close
finally
{
// Close File
fileClose(fileObject);
}
Signup for cfbreak to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.