Hi. I got this idea for a .batch script. Basically, it makes a folder in a certain directory, only if this folder doesn't exist of course. And then, it copies some folders from another directory into it. And yes, I seriously need to try to learn batch...
Code: md "Z:\Pictures" xcopy "E:\Software\Temp\Pics" "Z:\Pictures" /s /y You can look at those, but CMD is being deprecated soon, you better learn powershell instead. https://www.computerhope.com/batch.htm https://ss64.com/nt
Code: @echo off SET Source=E:\Software\Temp\Pics SET Target=Z:\Pictures if not exist "%Target%" mkdir "%Target%" xcopy "%Source%" "%Target%" /s /y exit
I've never heard of, and can't find, any information about CMD and batch script being removed from windows. Do you have a link?
Hi. Thanks for your input. I do not know python unfortunately and batch seemed like a good option. But, I can see how this task can be accomplished with python as well.