Home / Microsoft / Microsoft DOS / Resolved: Moving all .mp3
0 Members and 1 Guest are viewing this topic. « previous next »
Pages: [1] 2  All - (Bottom) Print
Author Topic: Resolved: Moving all .mp3  (Read 1602 times)
Dark Blade
Topic Starter
Forum Gaming Master
Adviser



Thanked: 24
Posts: 724

Experience: Experienced
OS: Windows XP

1
« on: May 25, 2007, 06:50:51 PM »

Well, using Command Prompt (or a batch file is needs be), how could I copy all .mp3 files in a certain directory (C:\Documents and Settings\Owner\My Documents) and all sub-directories to a certain folder (C:\Documents and Settings\Owner\My Music)?
« Last Edit: May 26, 2007, 10:15:42 PM by Dark Blade » IP logged

helper
Intermediate



Thanked: 1
Posts: 137




« Reply #1 on: May 25, 2007, 06:58:01 PM »

move C:\Documents and Settings\Owner\My Documents\*.mp3 C:\Documents and Settings\Owner\My Music
IP logged
Dark Blade
Topic Starter
Forum Gaming Master
Adviser



Thanked: 24
Posts: 724

Experience: Experienced
OS: Windows XP

1
« Reply #2 on: May 25, 2007, 07:05:49 PM »

For that to work, I think you'd need to do this:

copy "C:\Documents and Settings\Owner\My Documents\*.mp3" "C:\Documents and Settings\Owner\My Music"

I already knew how to do that, but I don't know how to move everything in sub-directories, which is my problem.
IP logged

GuruGary
Adviser



Posts: 771




« Reply #3 on: May 25, 2007, 07:31:48 PM »

To COPY with ALL SUBDIRECTORIES, I would use:
Code: [Select]
xcopy "C:\Documents and Settings\Owner\My Documents\*.mp3" "C:\Documents and Settings\Owner\My Music" /s /c
There are additional switches you can use if there are hidden or system files or directories that contain MP3 files.
IP logged
Dark Blade
Topic Starter
Forum Gaming Master
Adviser



Thanked: 24
Posts: 724

Experience: Experienced
OS: Windows XP

1
« Reply #4 on: May 25, 2007, 07:34:59 PM »

Thanks for the help! I'll keep xcopy in mind.
IP logged

CBMatt
Mod & Malware Specialist
Prodigy



Thanked: 160
Posts: 6,033

Experience: Experienced
OS: Windows 7


Sad and lonely...and loving every minute of it.

1
« Reply #5 on: May 26, 2007, 05:08:13 AM »

I don't mean to hijack, but knowing only a select few commands right now, I'm a bit curious...what if in two different directories, there are two files with the same name?  Since they are being moved into the same folder...will one file override the other, will one automatically be renamed, or will they not get moved?  Or would there be an error?  Probably a silly question, but this really isn't my field.

EDIT:  Just tried it out for myself and it simply moved all of the subdirectories containing MP3 files.  I thought the goal was to move just the files?
IP logged

Quote
An undefined problem has an infinite number of solutions.
由obert A. Humphrey

Actually, the name's Chris...
Carbon Dudeoxide
Global Moderator
Mastermind


Thanked: 146
Posts: 16,087

Certifications: List
Computer: Specs
Experience: Expert
OS: Mac OS


Carbon - The building block of life on Earth.

My Youtube Profile 1 1
« Reply #6 on: May 26, 2007, 05:16:15 AM »

I think if both files are named hello.mp3 and they are moved to one file, i think one would be hello.mp3 and the other one would be hello(1).mp3 or something like that.

EDIT: no it overwrites it.
IP logged

CBMatt
Mod & Malware Specialist
Prodigy



Thanked: 160
Posts: 6,033

Experience: Experienced
OS: Windows 7


Sad and lonely...and loving every minute of it.

1
« Reply #7 on: May 26, 2007, 05:18:20 AM »

That's what I was thinking, but testing it for myself didn't answer my question (see my above edit).
IP logged

Quote
An undefined problem has an infinite number of solutions.
由obert A. Humphrey

Actually, the name's Chris...
Sidewinder
Guru



Thanked: 97
Posts: 4,341

Experience: Familiar
OS: Windows 7

« Reply #8 on: May 26, 2007, 05:35:47 AM »

XCOPY always seems like a crap shoot to me. I'm never sure which switches will produce the results I'm looking for.

Sometimes it's easier to plod along  one file at a time.

Code: [Select]
@echo off
for /f "tokens=* delims=" %%i in ('dir "C:\Documents and Settings\Owner\My Document\*.mp3" /s') do (
copy "%%i" "C:\Documents and Settings\Owner\My Music"
)

I'm fairly certain the user will be prompted to overwrite duplicate file names in the target direcory.

 8)
IP logged

If you don't know where you are going, any road will get you there

                                                                            -Lewis Carroll
CBMatt
Mod & Malware Specialist
Prodigy



Thanked: 160
Posts: 6,033

Experience: Experienced
OS: Windows 7


Sad and lonely...and loving every minute of it.

1
« Reply #9 on: May 26, 2007, 07:21:50 AM »

Not too sure what I might've done wrong, but that did absolutely nothing for me...
IP logged

Quote
An undefined problem has an infinite number of solutions.
由obert A. Humphrey

Actually, the name's Chris...
Sidewinder
Guru



Thanked: 97
Posts: 4,341

Experience: Familiar
OS: Windows 7

« Reply #10 on: May 26, 2007, 07:40:18 AM »

It seemed reasonable the OP user name is Owner ;D Perhaps this will make it more generic.

Code: [Select]
@echo off
for /f "tokens=* delims=" %%i in ('dir "C:\Documents and Settings\%Username%\My Document\*.mp3" /s') do (
copy "%%i" "C:\Documents and Settings\%Username%\My Music"
)

Quote
Not too sure what I might've done wrong, but that did absolutely nothing for me...

No message at all? Nothing on the console? Usually the command shell sends some sort of an error message, no matter how cryptic it maybe.

 8)
IP logged

If you don't know where you are going, any road will get you there

                                                                            -Lewis Carroll
CBMatt
Mod & Malware Specialist
Prodigy



Thanked: 160
Posts: 6,033

Experience: Experienced
OS: Windows 7


Sad and lonely...and loving every minute of it.

1
« Reply #11 on: May 26, 2007, 08:00:01 AM »

Setting it as %Username% actually did less, I think.  Heh.

In my last post, I shouldn't have said it did nothing.  I should've said it made no changes.  The console appeared and there was some text, but it closed too quickly for me to be able to read it.  It looked like it was a list of everything in the directory, though.

Keep in mind that I changed Owner to Owner.Murgatroyd7, which is my username.  When I change that to %Username%, the console is blank during the split-second it opens.

The only changes I have made are to the directories, and I'm certain I am using the correct paths.
IP logged

Quote
An undefined problem has an infinite number of solutions.
由obert A. Humphrey

Actually, the name's Chris...
Sidewinder
Guru



Thanked: 97
Posts: 4,341

Experience: Familiar
OS: Windows 7

« Reply #12 on: May 26, 2007, 08:49:24 AM »

Try running from the command prompt. As you said using the run box or windows explorer, closes the windows too fast to read. If you could post your file (including the directory changes you made) it would be easier to debug.

Not for nothing, but what happened to the OP?

 8)
IP logged

If you don't know where you are going, any road will get you there

                                                                            -Lewis Carroll
CBMatt
Mod & Malware Specialist
Prodigy



Thanked: 160
Posts: 6,033

Experience: Experienced
OS: Windows 7


Sad and lonely...and loving every minute of it.

1
« Reply #13 on: May 26, 2007, 09:38:24 AM »

I went ahead and just added a pause at the end (don't know why I didn't think of that earlier) to keep the window from closing.

This is the exact error...
Quote
The system cannot find the file specified.
The system cannot find the file specified.
  Directory of C:\Documents and Settings\Owner.Murgatroyd7\Desktop\test\Angelo Spencer
The filename, directory name, or volume label syntax is incorrect.
            0 file(s) copied.
The system cannot find the file specified.
The system cannot find the file specified.
The system cannot find the file specified.
"         Total Files Listed:" is not a recognized device.
         Total Files Listed:
The filename, directory name, or volume label syntax is incorrect.
            0 file(s) copied.
The system cannot find the file specified.
The system cannot find the file specified.
Desktop\test is a folder with various files.  "Angelo Spencer" is the subdirectory which houses the MP3's.

Here is the exact code I'm using...

Code: [Select]
@echo off
for /f "tokens=* delims=" %%i in ('dir "C:\Documents and Settings\Owner.Murgatroyd7\Desktop\test\*.mp3" /s') do (
copy "%%i" "C:\Documents and Settings\Owner.Murgatroyd7\Desktop\curious\"
)
Desktop\curious is where I'm trying to move the files to.


I know for sure that the directory paths are correct.  If they weren't, the below code wouldn't work...
Code: [Select]
xcopy "C:\Documents and Settings\Owner.Murgatroyd7\Desktop\test\*.mp3" "C:\Documents and Settings\Owner.Murgatroyd7\Desktop\curious" /s /c
IP logged

Quote
An undefined problem has an infinite number of solutions.
由obert A. Humphrey

Actually, the name's Chris...
Sidewinder
Guru



Thanked: 97
Posts: 4,341

Experience: Familiar
OS: Windows 7

« Reply #14 on: May 26, 2007, 10:04:11 AM »

Apologies for the oversight:

Code: [Select]
@echo off
for /f "tokens=* delims=" %%i in ('dir "C:\Documents and Settings\Owner.Murgatroyd7\Desktop\test\*.mp3" /b /s') do (
copy "%%i" "C:\Documents and Settings\Owner.Murgatroyd7\Desktop\curious\"
)

 8)
IP logged

If you don't know where you are going, any road will get you there

                                                                            -Lewis Carroll
Pages: [1] 2  All - (Top) Print 
Home / Microsoft / Microsoft DOS / Resolved: Moving all .mp3 « previous next »
 


Login with username, password and session length

Old Forum Search | Forum Rules
Copyright © 2010 Computer Hope ® All rights reserved.
Powered by SMF 2.0 RC3 | SMF © 2006–2010, Simple Machines LLC
Page created in 0.129 seconds with 20 queries.