Scenario:
I save my drawing with a file name as picture. After a while I made some changes on the file picture and save it again.
Since both file have the same name, is it possible that the new file automatically saved as picture1 without need to manually change the file name in the program? … I means automatically add number at the end of the file name if the file have the same name?
so at the end if I made changes on the files so many times, I will have many files named as picture, picture1, picture2, picture3…
You could use the create temp file method for this, use:
The file created will be unique by definition.
Another way is to create a unique filename based on the current time, as in:
This would give you meaningfull filenames with regards to edit history.