Need batch script to skip over existing .sfv files when ran a second time
问题 Made a simple batch script to create a .sfv for each file within the folder. I'm far from being a coder but I patched this together from various sites and made it work: for %%f in (*) do (cfv -C -f"%%f".sfv -tsfv "%%f") The issue is, if I run this batch file more than once, existing files get checked again and a separate .sfv file is created as a *.sfv.sfv Just wondering, how can this be written to ignore checking a file/writing a new .sfv if a .sfv exists? Thank you! Edit: I tried the