Opens a dialog that allows the user to choose a location and name of a new file to be created. It reports a string with the absolute file path or false if the user cancels.
file-open user-new-file ;; Assumes the user will choose a file
Note that this reporter doesn't actually create the file; normally you would create the file using file-open, as in the example.
If the user chooses an existing file, they will be asked if they wish to replace it or not, but the the reporter itself doesn't cause the file to be replaced. To do that you would use file-delete.
Take me to the full NetLogo Dictionary