I want my program to be able to write files in a sequential format, ie: file1.txt, file2.txt, file3.txt. It is only meant to write a single file upon execution of the code. It can’t overwrite any existing files, and it MUST be created. I’m stumped.
Share
Two choices:
Counter File.
Check the directory.
Counter File.
Each time you create a new file, you also rewrite the counter file with the
appropriate number. Very, very fast. However, it’s theoretically possible to
get the two out of synch. in the event of a crash.
You can also make the counter file slightly smarter by making it a small piece of
Python code.
Then, when you update the file, you write a little piece of Python code:
count = someNumber. You can add comments and other markers to this file to simplify your bookkeeping.Check the directory.
Slower. Never has a synchronization problem.