I have a method for saving a File, but I don't know how to save files with consecutive names such as file001.txt, file002.txt, file003.txt, filennn.text
How can I achieve this?
|
I have a method for saving a File, but I don't know how to save files with consecutive names such as How can I achieve this? |
||||
|
|
|
You can use the following line of code to create the filenames.
Then you will just use that string to create new files:
The following code will create files numbered 1 - 100:
Or, you will need to have a static variable that you increment every time you create a new file.
|
|||||||||||
|
|
It may be desirable for you to skip over writing to a file if it already exists. This could be done easily by placing the following at the beginning of the for loop proposed by Justin 'jjnguy' Nelson, for example:
|
|||
|
|