How would I be able to check if a folder was missing a specific file? I assume it would be some combination of if not exist X (execute Y)
and the path name, but I haven't been able to come up with any solutions.
From if /?
EXIST filename Specifies a true condition if the specified filename exists.
Not sure where I would put the path to the folder.
Essentially what I'm asking is how would I Check if any type of files exist in a directory using BATCH script, but only a specific filename in a specific folder? (And then place a not
in front)
Thank you in advance.