Skip to content

FS.SaveFileDialog

Name Mandatory Description Default Type
⬅️ Input The input of the shard, if any None
Output ➡️ The resulting output of the shard String
Filters No To filter files based on extensions. none [String]Var([String])None
CurrentDir No Set the current directory none StringVar(String)None

Examples

1
2
3
4
5
6
7
8
; pick any file
FS.SaveFileDialog | Log("save file path")

; pick any file from the parent directory
FS.SaveFileDialog(CurrentDir: "..") | Log("save file path")

; pick only .edn and .log file
FS.SaveFileDialog(Filters: ["edn" "log"]) | Log("save file path")