Search found 5 matches

by Crystina89
25 Apr 2013 02:14
Forum: DOS Batch Forum
Topic: Compare the varaible & create the folder of that variable
Replies: 9
Views: 6959

Re: Compare the varaible & create the folder of that variabl

hahhahha.. :D

Thank you so much for your quick help and guidance.

Cheers !! :)
by Crystina89
25 Apr 2013 01:10
Forum: DOS Batch Forum
Topic: Compare the varaible & create the folder of that variable
Replies: 9
Views: 6959

Re: Compare the varaible & create the folder of that variabl

Do you think the below code is correct or make any sense ??Actually i cant try this code multiple times as i am doing work on PROD environment @echo off set folder = C:\Batch\Script\ABC\CSVSPOOL\TEST REM Get Names of Affiliates to process from txt file for /f "tokens=*" %%a in ('type Count...
by Crystina89
25 Apr 2013 00:41
Forum: DOS Batch Forum
Topic: Compare the varaible & create the folder of that variable
Replies: 9
Views: 6959

Re: Compare the varaible & create the folder of that variabl

Hey what if - i want this new folder should be create under the predefined path that is for example i have already defined the path like

@echo off
set LOCATION = C:\Batch\Script\ABC\CSVSPOOL\TEST

Now that new hard coded folder should create under TEST folder .In this case what should i do ?
by Crystina89
24 Apr 2013 23:59
Forum: DOS Batch Forum
Topic: Compare the varaible & create the folder of that variable
Replies: 9
Views: 6959

Re: Compare the varaible & create the folder of that variabl

Here is the TEXT file values..

- NOR
- SW
- BE
- US
- UK
- EGT

Yes i didn't put csv values .Can you please assist me in this regard ? Like as i mentioned above that i have to create folder of that country code .
by Crystina89
24 Apr 2013 09:11
Forum: DOS Batch Forum
Topic: Compare the varaible & create the folder of that variable
Replies: 9
Views: 6959

Compare the varaible & create the folder of that variable

Gents !! I need a batch script that first pick the country code from the CSV file named as Country_Code.csv and then make a folder of that country code in this format AMX - <country_code> e.g. i have one code EGT in the Country_code.csv file so it make a folder of this code as AMX - EGT and if this ...