Search found 4 matches
- 18 Oct 2014 03:51
- Forum: DOS Batch Forum
- Topic: changing all the file names' case in a directory to UPPER
- Replies: 11
- Views: 15927
Re: changing all the file names' case in a directory to UPPE
Thanks a lot Yury i am able to integrate the case change and was able to see my expected output. Kudos to you.. @ECHO off :again echo Enter valid entry from the below options SET /P OPT=Which option would you like? 1) Lower 2) Upper 3) Exit IF %OPT%==1 GOTO :Lower IF %OPT%==2 GOTO :Upper IF %OPT%==3...
- 18 Oct 2014 01:47
- Forum: DOS Batch Forum
- Topic: changing all the file names' case in a directory to UPPER
- Replies: 11
- Views: 15927
Re: changing all the file names' case in a directory to UPPE
Thanks a million all.. 
The files in the directory can be renamed to upper case.
Is there any option to set/fetch the directory in the script dynamically?
Also i am trying to change the files's case to lower.. but with no luck
Can you please help me out.
Thanks Much,
Rafi

The files in the directory can be renamed to upper case.

Is there any option to set/fetch the directory in the script dynamically?
Also i am trying to change the files's case to lower.. but with no luck

Can you please help me out.
Thanks Much,
Rafi
- 17 Oct 2014 04:03
- Forum: DOS Batch Forum
- Topic: changing all the file names' case in a directory to UPPER
- Replies: 11
- Views: 15927
Re: changing all the file names' case in a directory to UPPE
Thanks Yury.
I am able to see all the file names of a directory in Upper cases now.
However, can you please tell me how to rename the files present in the directory from Lower Case to UPPER CASE.
Thanks Again,
Rafi
I am able to see all the file names of a directory in Upper cases now.

However, can you please tell me how to rename the files present in the directory from Lower Case to UPPER CASE.
Thanks Again,
Rafi
- 16 Oct 2014 19:17
- Forum: DOS Batch Forum
- Topic: changing all the file names' case in a directory to UPPER
- Replies: 11
- Views: 15927
changing all the file names' case in a directory to UPPER
Hi All, I am new to this forum. I have many files in a directory with different names. I want to change the file names to upper case. I am able to change them using command prompt and excel as of now. I am wondering whether we can do this process automatically by using any batch file. Can anyone ple...