I have a string. I want to load that string into a text file and then allow for the download of the file.
I do not see a way to create a file. None of the objects seem to support the creation of the file only writing and adding to it, etc. Since it would be hard to believe a file cannot be created, I am guessing I missed something.
I then need to allow for a download of the file back the users local pc. Is there a process for that?
Any suggestions will be appreciated.
UPDATE: The solution I found is to use OpenFilexxx procedures. I open the file for output, append the string in and close the file. I do not need to worry about download since its being written to the local drive. The process also makes it easy to keep the same file name and is the app work is handled all in memory. All were target requirements. The file only ever exists on the users hard drive.