Shutil.copy () Usage

Source: Internet
Author: User

Shutil.copyfile (SRC, DST): Copies the contents of a file (not including metadata) from SRC to DST.

DST must be the full target file name;

If SRC and DST are the same file, an error shutil will be thrown. Error.

DST must be writable, otherwise an exception IOError will be thrown. If DST already exists, it will be replaced.

Special files, such as characters or block devices and pipelines, cannot use this feature because CopyFile opens and reads the file.

SRC and DST are path names in the form of strings.

Shutil.ignore_patterns (*patterns) is an auxiliary function for Copytree, providing GLOB functionality, example:

From shutil import copytree, ignore_patterns

Copytree(source, Destination, ignore=ignore_patterns(' *.pyc ', ' tmp* ') )

Shutil.copy () Usage

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.