批处理 中的 COPY函数

首页 / 批处理入门教程 / 批处理 中的 COPY函数

此批处理命令用于将文件从一个位置复制到另一位置。

COPY - 语法

Copy [source] [destination]

文件将从源复制到目标位置。

COPY - 示例

以下示例显示了 copy 命令的不同变体。

无涯教程网

链接:https://www.learnfk.comhttps://www.learnfk.com/batch-script/batch-script-copy.html

来源:LearnFk无涯教程网

@echo off
cd
Rem Copies lists.txt to the present working directory.
If there is no destination identified , it defaults to the present working directory.
copy c:\lists.txt
Rem The file lists.txt will be copied from C:\to C:\tp location
copy C:\lists.txt c:\tp
Rem Quotation marks are required if the file name contains spaces
copy C:\My File.txt
Rem Copies all the files in F drive which have the txt file extension to the
current working directory copy
F:\*.txt
Rem Copies all files from dirA to dirB. Note that directories nested in dirA will not be copied
copy C:\dirA dirB

所有操作均按照批处理文件中的备注执行。

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

小马哥讲Spring核心编程思想 -〔小马哥〕

.NET Core开发实战 -〔肖伟宇〕

实用密码学 -〔范学雷〕

技术面试官识人手册 -〔熊燚(四火)〕

手把手带你写一门编程语言 -〔宫文学〕

深入C语言和程序运行原理 -〔于航〕

快手 · 音视频技术入门课 -〔刘歧〕

Dubbo源码剖析与实战 -〔何辉〕

AI大模型之美 -〔徐文浩〕

好记忆不如烂笔头。留下您的足迹吧 :)