python shutil code example

Example 1: install shutil

pip install pytest-shutil

Example 2: python copy file

from shutil import copyfile
copyfile(src, dst)

Example 3: python kill script

import sys
sys.exit()

Example 4: 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())