saveFile
Displays a file dialog window to get a path to save a file on the local file system.
Syntax
ui.Interface.frontCall("standard", "saveFile",
[path,name,filetype,caption],
[result])
- path - The default path to the file like "/tmp/document.txt".
- name - The label to be displayed for the file types / wildcards.
- filetype - The file types (as a blank space-separated list of extensions).
- caption - The caption to be displayed.
- result - The name of the selected file (or
NULL
if canceled).
Usage
When invoking the "saveFile
" front call, the front-end displays the file dialog
window using the local file system, to let the end user enter a file path.
Note: The file dialog window rendering and features depend on the type of
front end and the type of the front end platform (desktop OS, web browser).
If the user cancels the dialog, the front call returns NULL
in the result
variable.
Tip: When specifying a file path, pay attention to platform specific
rules regarding directory separators and space characters in file names. When the front-end executes
on a recent Microsoft™ Windows™ system, you can use the
/
slash character as directory separator,
like on Unix systems. A directory or file name can contain spaces, and there is no need to surround
the path with double quotes in such case. When using backslash directory separators, make sure to
escape backslash characters in string literals with \\
.Example
MAIN
DEFINE rec RECORD
path STRING,
name STRING,
wildcards STRING,
caption STRING
END RECORD
DEFINE result STRING
LET rec.path = "/tmp/new_file.jpg"
LET rec.name = "Image files"
LET rec.wildcards = "*.jpg *.png"
LET rec.caption = "Save file"
CALL ui.Interface.frontCall("standard","saveFile",[rec.*],[result])
IF result IS NULL THEN
DISPLAY "No file name was entered."
ELSE
DISPLAY "File :", result
END IF
END MAIN