I am attempting to find a way to put or save a file from a field without using the dialog box,
I looked at the docs and tried to find different way to do this,
Code: Select all
put the text of fld Field_three into URL "file:test.txt"
//but now how to get the file test.txt to go to the correct directory as //defined by
$folder_path1
Code: Select all
get $folder_path1
(I believe)
So I did a test to see if that were true, by using a button and field, and that does seem to be the case, now I am trying to figure out how to use the path to put or save a file directly into that dir path and of course name that file accordingly.
I could just use ask, and it does work that way but I hate to have the user go through that process over and over again, so that is why I am looking at directly moving the contents of the file into the directory path.
Any thoughts and or advice, thanks.