In gdscript, it is possible to indicate that a String you are exporting as a property is supposed to be a file path
# String is a path to a file.
export(String, FILE) var dialogFile
I'd like to do the same in C#, but can't figure out the syntax. below is the line I'm using in a .cs file How would I modify to indicate that the string is supposed to be a file path?
[Export] String dialogFile;