FORMULA LANGUAGE
Examples: @FileDir
1. This computed field formula returns the directory part of the file named by Pathname. If Pathname is list, this formula returns a list of the directory parts of the named files.
@FileDir(Pathname)
2. This computed field formula returns the file name part of the file named by Pathname.
@Right(Pathname; @FileDir(Pathname))
3. This agent formula displays the directory part of the current database name.
@Prompt([OK];
"File directory";
@FileDir(@Subset(@DbName; -1)))
4. This agent formula displays the file name part of the current database name.
pathname := @Subset(@DbName; -1);
@Prompt([OK];
"File name";
@Right(pathname; @FileDir(pathname)))
See Also
@FileDir
Glossary
Feedback on
Help
or
Product Usability
?
Help on Help
All Help Contents
Glossary