Last updated on
Apr 27, 2021
|
Also applies to ColdFusion
Reading a file
You can read a text file with the read function. The following example shows a simple usage:
<cfset filecontent=cfclient.file.read(“myNewFile.txt”)> |
Method summary
read(filename) - Reads the content of a given file
- returns – Content of file in the form of a string
- params
- filename - Absolute or relative path of the file (including file name)