Answers for "python shutil copy file"

3

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
0

shutil copyfile python

# Source path
source = "/home/User/Documents/file.txt"
  
# Destination path
destination = "/home/User/Documents/file(copy).txt"
  
# Copy the content of
# source to destination
dest = shutil.copyfile(source, destination)
Posted by: Guest on April-03-2021

Python Answers by Framework

Browse Popular Code Answers by Language