Day Trading Stocks & Futures

Nestle is entering the market with 2 minutes ready to eat Poha and Upama...it will be worth watching how these launches do in the markets ....

Smart_trade
 
Is there an easy way to create multiple empty folders (say 100 in number) and name those folders, as per the list of names from a txt/csv/word file

Though creating empty folders is not that difficult but naming is more important.
 

siddhant4u

Well-Unknown Member
Is there an easy way to create multiple empty folders (say 100 in number) and name those folders, as per the list of names from a txt/csv/word file

Though creating empty folders is not that difficult but naming is more important.
Code:
for /f %%i in (file.txt) do mkdir %%i
 

Similar threads