Whatever message this page gives is out now! Go check it out!

GetFileFromPath

Last update:
May 18, 2026
Note:
You can find the CFFiddle demo of this function and other file functions as part of a project that is shared with you.
Click the button below to launch CFFiddle.
To copy the project in your workspace in CFFiddle, follow the steps below:
  1. Log in with your Gmail or Facebook credentials.
  2. Navigate to the project in the left pane.
  3. Once you make some changes in any cfm in the project, a pop up displays asking you to save the project.
  4. Give the project a suitable name and click Save.
  5. Create a folder named dir1 and upload a text file, myfile.txt.

Description

Extracts a filename from an absolute on-disk or in-memory path.

Returns

Filename, as a string.

Category

Function syntax

GetFileFromPath(path)

See also

Parameters

Parameter
Description
path
Absolute on-disk or in-memory path.

Example

<h3>GetFileFromPath Example</h3> 
 <cfset thisPath = ExpandPath("*.*")> 
 <cfset thisDirectory = GetDirectoryFromPath(thisPath)> 
 <cfoutput> 
 The current directory is: #GetDirectoryFromPath(thisPath)# 
 <cfif IsDefined("FORM.yourFile")> 
 <cfif FORM.yourFile is not ""> 
 <cfset yourFile = FORM.yourFile> 
 <cfif FileExists(ExpandPath(yourfile))> 
 <p>Your file exists in this directory. You entered the correct file 
 name, #GetFileFromPath("#thisPath#/#yourfile#")# 
 <cfelse> 
 <p>Your file was not found in this directory: 
 <br>Here is a list of the other files in this directory: 
 <!--- use CFDIRECTORY to give the contents of the snippets 
 directory, order by name and size ---> 
 <CFDIRECTORY 
 DIRECTORY = "#thisDirectory#" 
 name = "myDirectory" 
 SORT = "name ASC, size DESC"> 
 <!--- Output the contents of the CFDIRECTORY as a CFTABLE ---> 
 <CFTABLE QUERY = "myDirectory"> 
 <CFCOL HEADER = "NAME:" TEXT = "#Name#"> 
 <CFCOL HEADER = "SIZE:" TEXT = "#Size#"> 
 ...

Share this page

Was this page helpful?
We're glad. Tell us how this page helped.
We're sorry. Can you tell us what didn't work for you?
Thank you for your feedback. Your response will help improve this page.

On this page