if statement - IF EXIST C:\directory\ goto a else goto b problems windows XP batch files - S
There's an ELSE in the DOS batch language? Back in the days when I did more of this kinda thing, there wasn't. If my theory is correct and your ELSE is being ignored, you may be better off doing IF NOT EXIST file GOTO label ...which will also save you a l...