0
Plz xplain how to copy files to anothr dirctory using python script
files to another directory
1 Resposta
+ 1
import os
file = "file.txt"
#if windows system
os.system('copy %s d:\\' % file)
#if linux system
os.system('cp %s /home/' % file)
files to another directory