Getting the Temp folder is just as simple, but it is done with a different property:
tempPath = System.IO.Path.GetTempPath
You can also generate temp filenames with:
tempFilename = System.IO.Path.GetTempFileName
This blog is a depository for things I have found regarding VB.NET and C#.NET development (and other things I may need to remember). This blog is primarily for my own reference, but if the information I found is useful to others, then that is great. If others want to contribute with comments or other information, then that is great too.
tempPath = System.IO.Path.GetTempPath
tempFilename = System.IO.Path.GetTempFileName
4 comments:
awsome thx
Really Helpul! Thanx
Very helpful
If only the documentation made it this easy to find basic nuggets of usefulness like this. Many thanks.
Post a Comment