Jump to content

Xcopy Vs Copy


Recommended Posts

i'm writing a batch file to copy a few files over... What is the difference between using xcopy vs copy in a batch file? and do i need quotes over paths? Or... does anyone know how to copy files using my RunOnceEX file? i want to copy

%CDROM%\Applications\CDRWIN\Cdrwin.dat

to

%systemdrive%\CDRWIN3\

This will automatically register my application. What is the easiest way to do this? i would like to do it via the runonce ex, but if not what's some good batch commands?

Thanks alot

Link to comment
Share on other sites


copy does a shallow copy (doesn't recurse into sub directories) while xcopy has the option to do a rescursive copy which will copy all files and subfolders within the target folder that you are copying. if you're just copying one single file, either one will suffice.

Link to comment
Share on other sites

Thanks exactly what i was looking for.. now i need some syntax help? Where do you use quotes? is it...

XCOPY "%CDROM%\Applications\CDRWIN\Cdrwin.dat" "%systemdrive%\CDRWIN3\"

or...

XCOPY %CDROM%\Applications\CDRWIN\Cdrwin.dat %systemdrive%\CDRWIN3\

without quotes?

Thanks

Link to comment
Share on other sites

Either one should be sufficient. There shouldn't be any spaces in the variables, so, you can use quotes if you want, or you can not use quotes if you would prefer.

I personally always use quotes, just cause I feel its a good habit to get into, like pushin the clutch down when you brake, its not something thats always needed, but when it is need, it is important!

Link to comment
Share on other sites

Use The Copy Cmd To Copy One File

Copies one or more files to another location.

COPY [/D][/V] [/N] [/Y | /-Y] [/Z] [/A | /B ] source [/A | /B]

    [+ source [/A | /B] [+ ...]] [destination [/A | /B]]

  source      Specifies the file or files to be copied.

  /A          Indicates an ASCII text file.

  /B          Indicates a binary file.

  /D          Allow the destination file to be created decrypted

  destination  Specifies the directory and/or filename for the new file(s).

  /V          Verifies that new files are written correctly.

  /N          Uses short filename, if available, when copying a file with a

              non-8dot3 name.

  /Y          Suppresses prompting to confirm you want to overwrite an

              existing destination file.

  /-Y          Causes prompting to confirm you want to overwrite an

              existing destination file.

  /Z          Copies networked files in restartable mode.

The switch /Y may be preset in the COPYCMD environment variable.

This may be overridden with /-Y on the command line.  Default is

to prompt on overwrites unless COPY command is being executed from

within a batch script.

To append files, specify a single file for destination, but multiple files

for source (using wildcards or file1+file2+file3 format).

copy /y "%CDROM%\Applications\CDRWIN\Cdrwin.dat" "%systemdrive%\CDRWIN3\"

Link to comment
Share on other sites

kelsenellenelvian: how do i do that?

Right click on the file/s or folder/s you want to be placed after installation.

Select "add to archive" in winrar check the boxe that says "create sfx archive".

Next click advanced tab and choose "SFX options"

The next box will have a Path to extract box.

Put where you want the file in this box ie... c:\windows\system32

All variables can be used in this section also like %systemroot%, %Userprofile%.

Now go to the modes tab and check the options of "hide all" and "overwrite all files"

Click ok

then ok again.

Now all you have to do is call the sfx file from guironeonce or wherever. No switches are needed and the sfx is COMPLETLY silent!!!!!!!!!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...