Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Computing > Computer Support > changing file extension without changing filename

Reply
Thread Tools

changing file extension without changing filename

 
 
jamy
Guest
Posts: n/a
 
      03-03-2005
I have Windows XP and would like to change some file extensions without
changing the actual filenames.
I have a lot of Ogg vorbis files with a .vorbis extension I would like to
change to an .Ogg extension otherwise my MP3 player won't recognize them. I
would like to keep all the original filenames (songs).
Is there a way of safely doing this in a batch-mode?
I have almost 5GB and it would take too long to do it individually.
 
Reply With Quote
 
 
 
 
Richard
Guest
Posts: n/a
 
      03-04-2005
On 3 Mar 2005 23:10:29 GMT jamy wrote:

> I have Windows XP and would like to change some file extensions without
> changing the actual filenames.
> I have a lot of Ogg vorbis files with a .vorbis extension I would like to
> change to an .Ogg extension otherwise my MP3 player won't recognize them.
> I would like to keep all the original filenames (songs).
> Is there a way of safely doing this in a batch-mode?
> I have almost 5GB and it would take too long to do it individually.



Use a dos command.
copy *.vorbis *.ogg
del *.vorbis



 
Reply With Quote
 
 
 
 
Toolman Tim
Guest
Posts: n/a
 
      03-04-2005

"jamy" <> wrote in message
news:Xns960EB8DE778Cvolkmenearthlinknet@130.133.1. 4...
>I have Windows XP and would like to change some file extensions without
> changing the actual filenames.
> I have a lot of Ogg vorbis files with a .vorbis extension I would like to
> change to an .Ogg extension otherwise my MP3 player won't recognize them.
> I
> would like to keep all the original filenames (songs).
> Is there a way of safely doing this in a batch-mode?
> I have almost 5GB and it would take too long to do it individually.


You can do it from a DOS window. Are the files all in the same folder? If
not, you would need to do this in each folder.

Open a cmd prompt. (Winkey+R, type CMD press <enter>).

Navigate to the folder you have your files in:
CD "C:\documents and settings\user name\my documents\my music" (substitute
your login name for 'user name', and edit the path as needed)

Type ren *.xxx *.yyy <enter> (substitue your old extension for xxx, and your
new extension for yyy)

That's it! Now, navigate to any other folders which need changing and do
the same.



 
Reply With Quote
 
Unk
Guest
Posts: n/a
 
      03-04-2005
On 3 Mar 2005 23:10:29 GMT, jamy <> wrote:

>I have Windows XP and would like to change some file extensions without
>changing the actual filenames.
>I have a lot of Ogg vorbis files with a .vorbis extension I would like to
>change to an .Ogg extension otherwise my MP3 player won't recognize them. I
>would like to keep all the original filenames (songs).
>Is there a way of safely doing this in a batch-mode?
>I have almost 5GB and it would take too long to do it individually.


You can do that from a Command prompt:
Start, Programs, Command Prompt
Or Start, Run. In the Run box, type CMD

Navigate to the folder where the files are and type:
ren *.vorbis *.ogg

Then wait until the cursor starts blinking again. 5GB will take a while.

Rename a single file FIRST and make sure the change to the .ogg extension plays!


3rd party software:

Magic File Renamer
http://www.finebytes.com/

 
Reply With Quote
 
Pennywise@DerryMaine.gov
Guest
Posts: n/a
 
      03-04-2005
On 3 Mar 2005 23:10:29 GMT, jamy <> wrote:

|> I have Windows XP and would like to change some file extensions without
|> changing the actual filenames.
|> I have a lot of Ogg vorbis files with a .vorbis extension I would like to
|> change to an .Ogg extension otherwise my MP3 player won't recognize them. I
|> would like to keep all the original filenames (songs).
|> Is there a way of safely doing this in a batch-mode?
|> I have almost 5GB and it would take too long to do it individually.

WinKey+R (run) <type in> cmd <enter>
(get into a command window)

CD to the directory your working with
type in:
copy *.vorbis <some other directory> \*.Ogg

-copy to make sure it works, and another directory just incase you have
a file by the same name-

--
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: Is it possible to let a virtual file created by cStringIO havea filename so that functions can read it by its filename? Steven Howe Python 0 01-14-2011 10:32 PM
File.fnmatch? doesn't distinguish between .filename and ./filename ? Stefano Crocco Ruby 0 11-14-2008 10:48 AM
fnmatch on filename (without specific extension) kepioo Python 2 04-09-2006 01:00 PM
filename without extension in URL query Joe ASP .Net 7 02-08-2005 04:17 AM
filename without extension in URL query jrefactors@hotmail.com Java 7 02-06-2005 06:41 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57