I have to make a loop to generate a 5 randomly-picked-letter string, and then create a text file under that name, lets say in C:// , how will I do that? Both the generating name and creating a file in the directory. I think I have to pick 5 random numbers from the ascii codes add them to an array and then convert them to the character equivalents to be able to use it as a name. Idk how I'll convert them to character and make up a string with them, could you help me?
|
1
|
|||||
|
|
|
If you want to create the file names youself, put the characters that you want to use in a string and pick from that:
|
||
|
|
|
|
Look at the GetTempFileName and GetRandomFileName methods of the System.IO.Path class.
|
||
|
|
|
A piece of code that generates a random string (of letters) was posted here. Code that creates files (also using random file names) is available here. |
||
|
|
|
|
Hi, found this on Google for you (source here):
After that, use file streams to create and write the file. |
||
|
|
|
What about Path.GetTempFileName() or Path.GetRandomFileName() methods? Consider also the fact that file system is not transactional and two parallel processes can create the same file name. TempFileName() should return unique name (by specification), so 'maybe' you don't need to care about that if the temp directory could be fine for your solution. |
||
|
|
|
|
Or you could use a GUID for generating a unique filename: Wikipedia:
|
||||||||
|
