Skip to content

FS.SaveFileDialog

Name - Description Default Type
<input>
<output> String
Filters To filter files based on extensions. None [String]&[String]
CurrentDir Set the current directory None String&String

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
; 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")