Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.
xcopy "C:\Documents and Settings\Owner\My Documents\*.mp3" "C:\Documents and Settings\Owner\My Music" /s /c
An undefined problem has an infinite number of solutions.由obert A. Humphrey
@echo offfor /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" )
@echo offfor /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" )
Not too sure what I might've done wrong, but that did absolutely nothing for me...
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 SpencerThe 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.
@echo offfor /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\" )
xcopy "C:\Documents and Settings\Owner.Murgatroyd7\Desktop\test\*.mp3" "C:\Documents and Settings\Owner.Murgatroyd7\Desktop\curious" /s /c
@echo offfor /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\" )