I have a small db that backs up some file folders on a shared drive that contains a lot of data. I am currently using the XCOPY command to do so which works great. However, there are log files all over that take forever to go through, plus I really don't care to capture them. Is there a way to make an exception for xcopy to copy what it normally does, but NOT to copy anything with a (*.log) extension?
I'm doing something like this:
I'm doing something like this:
Code:
Shell "xcopy " & """" & "\\Test.com\Test1\Test2\Test3\Test4\Apps" & """" & " " & """" & fileName & "Test4\Apps\" & """" & " /y /i /e /d"
Comment