[Help]Create program files folder when run[Solved]
Well this is VERY nooby, but I just started VB.
When the user runs the program I want a folder to be created in their program files, and a .txt inside that folder. I know how to do this, but how would I actually name the folder like "Test Program" and the .txt to actually contain text. How would I write text to the .txt when the programs runs?
[php]Io.Directory.CreateDirectory("Path")
[/php]
[php]
Using sWrite as new io.streamwriter("Path", append as boolean)
swrite.write(text)
end using[/php]