I want a script so my file move from one folder to another and creates a new file, if any file already exists.
For example, I have a file test.csv in Downloads folder. When I run the below script if overrides the file if any file exists with the same name in downloads1 folder.
But I want, it shouldn't override the existing file but both the files should be there..may be it changes the name.adds 1,2 behind.
move C:\user\Downloads\*.csv C:\user\downloads1\
Also I know using /-Y will ask me I needs to overide. But I want to do this automatically.
move /-Y C:\user\Downloads\*.csv C:\user\downloads1\