xcopy

XCOPY source [destination] [/A | /M] [/D[:date]] [/P] [/S [/E]] [/V] [/W]

[/C] [/I] [/Q] [/F] [/L] [/G] [/H] [/R] [/T] [/U]

[/K] [/N] [/O] [/X] [/Y] [/-Y] [/Z] [/B]

[/EXCLUDE:file1[+file2][+file3]...]

source       Specifies the file(s) to copy.

destination  Specifies the location and/or name of new files.

/A           Copies only files with the archive attribute set,

doesn‘t change the attribute.

/M           Copies only files with the archive attribute set,

turns off the archive attribute.

/D:m-d-y     Copies files changed on or after the specified date.

If no date is given, copies only those files whose

source time is newer than the destination time.

/EXCLUDE:file1[+file2][+file3]...

Specifies a list of files containing strings.  Each string

should be in a separate line in the files.  When any of the

strings match any part of the absolute path of the file to be

copied, that file will be excluded from being copied.  For

example, specifying a string like \obj\ or .obj will exclude

all files underneath the directory obj or all files with the

.obj extension respectively.

/P           Prompts you before creating each destination file.

/S           Copies directories and subdirectories except empty ones.

/E           Copies directories and subdirectories, including empty ones.

Same as /S /E. May be used to modify /T.

/V           Verifies the size of each new file.

/W           Prompts you to press a key before copying.

/C           Continues copying even if errors occur.

/I           If destination does not exist and copying more than one file,

assumes that destination must be a directory.

/Q           Does not display file names while copying.

/F           Displays full source and destination file names while copying.

/L           Displays files that would be copied.

/G           Allows the copying of encrypted files to destination that does

not support encryption.

/H           Copies hidden and system files also.

/R           Overwrites read-only files.

/T           Creates directory structure, but does not copy files. Does not

include empty directories or subdirectories. /T /E includes

empty directories and subdirectories.

/U           Copies only files that already exist in destination.

/K           Copies attributes. Normal Xcopy will reset read-only attributes.

/N           Copies using the generated short names.

/O           Copies file ownership and ACL information.

/X           Copies file audit settings (implies /O).

/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.

/B           Copies the Symbolic Link itself versus the target of the link.

/J           Copies using unbuffered I/O. Recommended for very large files.

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

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

时间: 2024-11-02 21:34:52

xcopy的相关文章

Visual studio 生成事件的使用 、xcopy 实现 dll 复制操作、

IF NOT "$(ConfigurationName)"=="publish" exit /B 0if not exist $(TargetPath)publish md $(TargetPath)publishxcopy /y $(TargetPath) $(SolutionDir)\\publisher 关于xcopy http://baike.baidu.com/link?url=PqKP2WNM02x4jWOGlYV4p2nm5X-gtIMitWsWMsI

java调用copy复制子文件夹及文件到指定目录(非xcopy)

因为作所以烦因为烦所以快乐...(为什么不先查一下有没有现成的命令,后悔啊!!) 不知道有xcopy这个命令就自己想写个复制子目录和文件的功能...以下故事诞生了 是这样的,昨天在学校弄的半成品,半成品弄完晚上就跟朋友打cf了...他是个会带队团灭的牛逼人物!! 然后隔天早上去学校就拿半成品测试了一下,发现直接用copy只能复制文件啊,不能直接复制子目录里的文件(目录指的是文件夹,子目录就是文件夹里面还有文件夹当然也有可能是文件).....那怎么搞???纠结了一下,就开始把半成品稍微改了一下,似

xcopy复制指定日期的文件

直接例子: xcopy c:\abc\*.*  d:\oafile /D:04-24-17  /e/s 将C:\abc目录下的所有修改日期在2017年4月24日后的文件复制到d:\oafile中.

利用xcopy命令实现本地文件复制到远程服务器的方法

net use \\192.168.1.198\ipc$ Zqf198703 /user:royalpeak xcopy g:\backup\*.* \\192.168.1.198\数据备份 /D /E /Y /H /K net use \\192.168.1.198\ipc$ /delete 用Xcopy命令可以做到 xcopy 源路径 目标路径 复制文件和目录,包括子目录.

False 'Sharing Violation' Xcopy error message

今天想要将QC的新工具自动拷贝到p4 用户机器上使用,为了避免每次通知大家升级啊!!! 于是,我在程序里调用了bat文件,执行拷贝操作,想在默默的情况下替换更新新版本工具,结果我测试发现没能成功更新版本,于是去看log,发现拷贝exe文件的时候报错:Sharing Violation 网上查了很多资料,说的最多的是.拷贝权限问题~~~ 例如:  B -->A.  通常是A处目标不可写,或者B处文件不可读. 查了文件后发现不存在该问题. 当我手动执行bat文件,拷贝顺利进行~~~ 如此诡异~~~

批处理中Copy与Xcopy命令的区别(转自:www.jbxue.com)

有关批处理脚本中,copy命令与xcopy命令在用法上的一些区别.原文地址:http://www.jbxue.com/article/14536.html Copy与Xcopy的区别一,copy不能在有子目录存在的文件中拷贝文件的同时重命名此文件名说明,这里C:为根目录,bat为子目录),而xcopy能,不过会出现提示,当然可以加参数而不使它提示. C:\>copy c:\bat\hai.bat d:\bat\hello.bat提示:系统找不到指定的路径. 已复制 0 个文件.可以这样: C:\

dos文件(夹)复制命令:copy和xcopy

1.copy命令 将一份或多份文件复制到另一个位置. COPY [/D] [/V] [/N] [/Y | /-Y] [/Z] [/L] [/A | /B ] source [/A | /B] [+ source [/A | /B] [+ ...]] [destination [/A | /B]] source 指定要复制的文件. /A 表示一个 ASCII 文本文件. /B 表示一个二进位文件. /D 允许解密要创建的目标文件 destination 为新文件指定目录和/或文件名. /V 验证新

BAT批处理之文件与文件夹操作代码(附xcopy命令详解)

批处理中的文件.文件夹操作,xcopy命令的用法. 一,建bat文件自动执行复制,删除命令. 例1:复制cd.dll文件至windows\system32的bat文件内容: copy cd.dll %windir%\system32 例2:卸载windows\system32目录中的cd.dll,即把上面复制的文件删除: del %windir%\system32\cd.dll 例3:删除download文件夹中的文件,例子如下: del C:\DOWNLOAD\*.* 注意,以处的del命令只

visual studio xcopy /exclude测试

http://files.cnblogs.com/files/zfanlong1314/exclude%E6%B5%8B%E8%AF%95.zipxcopy 提供了 /EXCLUDE: 参数用于在复制时排除某些文件,但是 xcopy 本身的帮助信息不够明确,特给大家提供几个应用实例: 首先看一下执行 xcopy /? 得到的帮助信息:/EXCLUDE:file1[+file2][+file3]... 指定含有字符串的文件列表.如果有任何字符串与要被复制的文件的绝对路径相符,那个文件将不会得到复制