I am working on a program that needs to create a multiple temporary folders for the application. These will not be seen by the user. The app is written in VB.net. I can think of a few ways to do it such as incremental folder name or random numbered folder names, but I was wondering, how other people solve this problem?
|
|
Here's what I've used in VB.NET. Essentially the same as presented, except I usually didn't want to create the folder immediately. The advantage to use GetRandomFilename is that it doesn't create a file, so you don't have to clean up if your using the name for something other than a file. Like using it for folder name.
Random Filename Example: C:\Documents and Settings\username\Local Settings\Temp\u3z5e0co.tvq Here's a variation using a Guid to get the temp folder name.
guid Example: C:\Documents and Settings\username\Local Settings\Temp\2dbc6db7-2d45-4b75-b27f-0bd492c60496 |
||
|
|
|
|
You have to use
You can use They are created in the windows temp folder and that's consider a best practice |
||
|
|
|
|
Just to clarify:
returns just the folder path to the temp folder.
returns the fully qualified file name (including the path) so this:
is redundant. |
||
|
|
|
|
As long as the name of the folder doesn't need to be meaningful, how about using a GUID for them? |
||
|
|
|
|
You could generate a GUID for your temporary folder names. |
||
|
|
|
|
You can use (VS.85).aspx">GetTempFileName to create a temporary file, then delete and re-create this file as a directory instead. Note: link didn't work, copy/paste from: http://msdn.microsoft.com/en-us/library/aa364991(VS.85).aspx |
||
|
|
|
|
Something like...
|
||
|
|
|
|
Combined answers from @adam-wright and pix0r will work the best IMHO:
|
||
|
|
|
|
There's a possible race condition when:
With Similarly, between calling For most applications it's OK for a temp directory to fail due to a race condition. It's extremely rare after all. For them, these races can often be ignored. In the Unix shell scripting world, creating temp files and directories in a safe race-free way is a big deal. Many machines have multiple (hostile) users -- think shared web host -- and many scripts and applications need to safely create temp files and directories in the shared /tmp directory. See Safely Creating Temporary Files in Shell Scripts for a discussion on how to safely create temp directories from shell scripts. |
||
|
|
|
|
The advantage to using System.IO.Path.GetTempFileName is that it will be a file in the user's local (i.e., non-roaming) path. This is exactly where you would want it for permissions and security reasons. |
||
|
|
|
|
Test reply |
||
|
|
