Script File Alphanumeric Constants |
Top Previous Next |
Alphanumeric constants define file names and other character strings that may be used in script commands directly or assigned to script variables. Alphanumeric constants are always enclosed by single or double quotation marks. Examples of alphanumeric constants are:
SENDFILE ’c:\My Data\Update Inventory.dbf’ COPY "file2" "file1" SET filename = "filepath"
Whenever you are using a file name in a constant or variable, FileLink always assumes the file is located in the working folder. If you want to reference a file elsewhere, you should always use the file’s full path name.
|