Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to implement a specified date with XCOPY and exclude a specified file with EXCLUDE

2025-04-02 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article focuses on "how to use XCOPY to achieve a specified date and use EXCLUDE to exclude specified files", interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Let the editor take you to learn "how to use XCOPY to achieve a specified date and use EXCLUDE to exclude specified files"!

1.cmd to the directory where xcopyTime.bat is located, and execute the command xcopyTime sourceFolder DestinationFolder dateTime

2.EXCLUDE.txt is an excluded object and does not copy the files or folders listed in it

Example:

F:\ bat > xcopyTime E:\ workspace F:\ website\ 06-30-2010

EXCLUDE.txt content, in the line below

-

.classpath

.class

.log

-

The code is as follows:

@ echo off

Rem xcopy2.BAT transfers all files in all subdirectories of

Rem the source drive or directory (1) to the destination

Rem drive or directory (2)

Rem lastModifyTime (3)

Xcopy% 1% 2 / s / dvv% 3 / exclude:EXCLUDE.txt / y

If errorlevel 4 goto lowmemory

If errorlevel 2 goto abort

If errorlevel 0 goto exit

: lowmemory

Echo Insufficient memory to copy files or

Echo invalid drive or command-line syntax.

Goto exit

: abort

Echo You pressed CTRL+C to end the copy operation.

Goto exit

: exit

=

.classpath

.class

.log

At this point, I believe you have a deeper understanding of "how to use XCOPY to achieve a specified date and use EXCLUDE to exclude specified files". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report