There was an error while loading. Please reload this page.
Use the FileExt operator to retrieve the extension (suffix) of a file name.
FileExt
FileExt(fileName)
fileName
The operator looks for the last dot . in the file name and returns what is to the right of it.
.
Example: FileExt("C:\Temp\this_is_a_file.csv") will return csv.
FileExt("C:\Temp\this_is_a_file.csv")
csv