[Solved] How to use “if() and else if()” condition in Windows Batch files [closed]


He means that he want to create a folder in the current directory by the current date using batch programming for example if the date is 30/04/2018 the folder name would be 30April2018 … now he asked that id the dates are (01,02,21,22,21)/05/2018 then the name should be 1stmay2018 instead of 1May2018 or 22ndMay2018 instead of 22May2018 or 21stMay2018 instead of 21May2018
i hope now you all got the question

Yes you can use if statement for that you have to manually check for each date like (1,2,3,21,22,31) and then you can replace it with ur value….

foe if else you can study
https://www.tutorialspoint.com/batch_script/batch_script_if_else_statement.htm

http://steve-jansen.github.io/guides/windows-batch-scripting/part-5-if-then-conditionals.html

i woud recomend to store the date in a variable and then check for it and store the new name in another folder

solved How to use “if() and else if()” condition in Windows Batch files [closed]