|
Need help to create a simple .BAT file
I need to copy a file from this location to another location, then overwrite another existing file.
H: \Porn\Lesbian\ABC.mpg
to
folder: I: \JB\Collection\
then
overwrite CBA.mpg with ABC.mpg
How to do that?
=================================
I know I can use xcopy
XCOPY "H: \Porn\Lesbian\ABC.mpg" "I: \JB\Collection\" /D /E /C /R /I /K /Y
but I dont' know how to add the overwrite command. Please Help.
|