FILE_FULL_PATH
Syntax
FILE_FULL_PATH(<string>)
Description
Returns the entire file path (including the root directory) without the filename and extension.
Examples
Column1 | FILE_FULL_PATH returns |
---|---|
/dir1/dir2 | /dir1/ |
/dir1/file.txt | /dir1/ |
/file.txt | / |
C:\dir1\dir2 | C:\dir1\ |
C:\dir1\file.txt | C:\dir1\ |
C:\file.txt | C:\ |
file.txt | λ (= an empty string) |