I have a script that does a XCopy of File.dll from my source of %~dp0files\File.dll to C:\Apps directory, sometimes
File.dll is already present and other times it's not what is a simple way in the batch to check if File.dll is
not present then XCopy over and if there just continue on with the rest of my my script? Thanks DP
[ SOLVED ] XCopy Question ??
Moderator: DosItHelp
-
- Posts: 233
- Joined: 21 Nov 2010 08:07
- Location: At My Computer
[ SOLVED ] XCopy Question ??
Last edited by Dos_Probie on 11 Jul 2013 14:30, edited 1 time in total.
Re: XCopy Question ??
IF NOT EXIST "C:\Apps\File.dll" XCOPY ........
-
- Posts: 233
- Joined: 21 Nov 2010 08:07
- Location: At My Computer
Re: [ SOLVED ] XCopy Question ??
Thanks Squash!!...That works 
