Home > database >  How to double conditions in batch file?
How to double conditions in batch file?

Time:11-11

I have a problem with the elaboration of a script with two conditions. I would like to check the extension and a part of the file name. I need to perform actions on the day's files with the .doc extension

I have a problem with this script. Here is what I have done but it only works partially:

@echo off
chcp 1252
set Pathname="D:\testDir"
set year=           
  • Related