This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@rem Handle a specific directory in current folder differently from other folders | |
@echo off | |
set dirNameToFind=ebooks | |
rem Note that you should not leave spaces before and after "=" or you will get strange errors later on | |
set tempFileName=temp.txt | |
dir /a:d /b > %tempFileName% | |
set /a dirCounter=0 | |
FOR /F "tokens=*" %%i IN (%tempFileName%) DO ( rem The tokens keyword with an asterisk (*) will pull all text for the entire line | |
set /a dirCounter+=1 | |
IF NOT %dirNameToFind% == %%i ( | |
@echo %%i | |
) ELSE ( | |
@echo dirNameToFind = %%i | |
) | |
) | |
@echo number of folders in current dir = %dirCounter% | |
del %tempFileName% |
Bonus: If you want to set the result of a command to a variable, you can use this. Note that you have to enclose the command with ` `, not ' '. This reminds me of my double quote problem in Visual Studio...
No comments:
Post a Comment