Answers for "shutil"

2

install shutil

pip install pytest-shutil
Posted by: Guest on February-04-2021
21

python copy file

from shutil import copyfile
copyfile(src, dst)
Posted by: Guest on March-02-2020
2

shutil copy python

import os
import shutil

source = 'current/test/test.py'
target = '/prod/new'

assert not os.path.isabs(source)
target = os.path.join(target, os.path.dirname(source))

# create the folders if not already exists
os.makedirs(target)

# adding exception handling
try:
    shutil.copy(source, target)
except IOError as e:
    print("Unable to copy file. %s" % e)
except:
    print("Unexpected error:", sys.exc_info())
Posted by: Guest on March-29-2021
1

shutil

The shutil module offers a number of high-level operations on files and 
collections of files. In particular, functions are provided which 
support file copying and removal. For operations on individual files, 
see also the os module.
Posted by: Guest on June-23-2021

Python Answers by Framework

Browse Popular Code Answers by Language