I am trying to make a program, which creates .csv files using the same process but with different information. Because so far, every time when I run the program, it overrides the previous .csv file, I need to add date/time in the file name in order to create different .csv’s every run.
I have tried to create a variable with: System.DateTime.Now.ToString() and then add it to the file path/name but no success so far. Not sure how to proceed with the file path/name syntax.