Specialty Forums
Security and Virus
General Hardware
CPUs/Overclocking
Networking
Digital Photo/Video
Office Software
PC Gaming
Console Gaming
Programming
Database
Web Development
Digital Home

General Forums
Windows XP
Windows Vista
Windows 95/98
Windows Me
Windows NT
Windows 2000
Win Server 2008
Win Server 2003
Windows 3.1
Linux
PDAs
BeOS
Novell Netware
OpenVMS
Solaris
Disk Op. System
Unix
Mac
OS/2

Drivers
Driver Scan
Driver Forum

Software
Automatic Updates

BIOS Updates

My Computing.Net

Solution Center

Free IT eBook

Howtos

Site Search

Message Find

RSS Feeds

Install Guides

Data Recovery

About

Home
Reply to Message Icon Go to Main Page Icon

Subject: Removing '-' from the filename

Original Message
Name: sandhya
Date: May 5, 2008 at 14:33:56 Pacific
Subject: Removing '-' from the filename
OS: win xp
CPU/Ram: intel
Model/Manufacturer: hcl
Comment:
HI All,

I have to rename a filename as below in win xp dos mode.

actuall files i receive

sample_2008_01_02.csv
sample_2008_02_02.csv

i need to rename them as

sample_20080102.csv
sample_20080202.csv

I have tried like FOR %V IN ('dir c:\a\*.csv') DO FOR /F "tokens=1-5 delims=-" %J IN ('dir c:\a\*.csv') DO Rename "%V" %J%K%L

but i am getting a error file doesnot exsir...if i am trying the same with echo then i can see the file name is changing as per my requirement

FOR %V IN ('dir/b/a-d/o-d c:\a\*.csv') DO FOR /F "tokens=1-5 delims=-" %J IN ('dir/b/a-d/o-d c:\a\*.csv') DO echo Rename "%V" %J%K%L

Please suggest me how can rename the files.pls it's very urgent.

Thanks for your help

-Sandhya


Report Offensive Message For Removal

Response Number 1
Name: Mechanix2Go
Date: May 5, 2008 at 14:58:52 Pacific
Subject: Removing '-' from the filename
Reply: (edit)
Call me crazy; I don't see any - in filenames.

Untested:

::========================
@echo off
setLocal EnableDelayedExpansion

pushd c:\a

for /f "tokens=* delims= " %%a in ('dir/b/a-d') do (
for /f "tokens=1-4 delims=_" %%i in (%%a) do (
echo ren %%a %%i_%%j%%k%%l
)
)


=====================================
If at first you don't succeed, you're about average.

M2


Report Offensive Follow Up For Removal

Response Number 2
Name: sandhya
Date: May 6, 2008 at 00:49:00 Pacific
Subject: Removing '-' from the filename
Reply: (edit)
HI,

Thanks for the code i have tried it but it is not renaming the file is showing %j%%k%%l as filename

-Sandhya


Report Offensive Follow Up For Removal

Response Number 3
Name: Mechanix2Go
Date: May 6, 2008 at 04:03:49 Pacific
Subject: Removing '-' from the filename
Reply: (edit)
Try this. As written it 'previews' what is to be done. Qhen you're satisfied, remove the ECHO before the REN.

::============================

::========================
@echo off
setLocal EnableDelayedExpansion

pushd c:\a

for /f "tokens=* delims= " %%a in ('dir/b/a-d *.csv') do (
for /f "tokens=1-4 delims=_" %%i in ('echo %%a') do (
echo ren %%a %%i_%%j%%k%%l
)
)


=====================================
If at first you don't succeed, you're about average.

M2


Report Offensive Follow Up For Removal



Use following form to reply to current message:

   Name: From My Computing.Net Settings
 E-Mail: From My Computing.Net Settings

Subject: Removing '-' from the filename

Comments:

 
  Homepage URL (*): 
Homepage Title (*): 
         Image URL: 
 


Data Recovery Software



Version Tracker Pro
Keep your software current and secure, effortlessly

Click Here for a Free Scan

Driver Agent
Automatically find the latest drivers for your computer.
Click Here for a Free Scan



The information on Computing.Net is the opinions of its users. Such opinions may not be accurate and they are to be used at your own risk. Computing.Net cannot verify the validity of the statements made on this site. Computing.Net and Computing.Net, LLC hereby disclaim all responsibility and liability for the content of Computing.Net and its accuracy.
PLEASE READ THE FULL DISCLAIMER AND LEGAL TERMS BY CLICKING HERE

All content ©1996-2007 Computing.Net, LLC