fileExists

Determines whether a file exists

fileExists(filePath) → returns boolean

Argument Reference

filePath string
Required

A absolute file system path string.

Examples
Sample code invoking the fileExists function

var myFile = "/path/to/the/file.jpg";
if(fileExists(expandPath(myFile))) {
	writeOutput(myFile & 'exists!');
}

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

Fork me on GitHub