fileRead

Reads an on-disk or in-memory text file or a file object created with the FileOpen function.

fileRead(filePath [, charset | bufferSize]) → returns string

Argument Reference

filePath any
Required

An absolute file path, or file object.

charset any

Character encoding used to read the file.

bufferSize any

The number of characters to read.

Examples
Sample code invoking the fileRead function

Uses expandPath to grab a file in current directory.

fileContent = fileRead(expandPath("./file.txt"), "utf-8")

Signup for cfbreak to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.

Fork me on GitHub