Copy specific files from drive C: to a folder on Desktop

268 Views Asked by At

I need to walk through entire C:\ hard drive and take copy of all .jpg .mp3, mp4 and .avi files from Windows hard drive C: to Backup folder on desktop

import os.path
import shutil

#Create Directory if don't exist in Desktop path
dir_name = "abc"
dir_path = os.path.join(os.path.join(os.environ['USERPROFILE']), 'Desktop')
#dir_path = os.path.expanduser("~/Desktop")
file_path = os.path.join(dir_path, dir_name)

if not os.path.exists(file_path):
    os.mkdir(file_path)
    print(file_path)

  
extensions = [".mp3", ".mpeg", ".mp4", ".jpg", ".jpeg", ".avi"]

src_path = r"C:\\"
dst_dir = file_path
for root, dirs,files in os.walk(src_path):
   for file in extensions:
      if file.endswith(tuple(extensions)):
         shutil.copy(file_path, dst_dir)
2

There are 2 best solutions below

0
On BEST ANSWER

You have to write:

shutil.copy2(os.path.join(root, file), file_path)

import os
import shutil

#Create Directory if don't exist in Desktop path
dir_name = "Backup"

dir_path = os.path.join(os.path.join(os.environ['USERPROFILE']), 'Desktop')
#dir_path = os.path.expanduser("~/Desktop")
file_path = os.path.join(dir_path, dir_name)

if not os.path.exists(file_path):
    os.mkdir(file_path)
    print(file_path)

path = r'C:\\'
extensions = [".png", ".mp3", ".mpeg", ".mp4", ".jpg", ".jpeg", ".avi"]
for root, dir, files in os.walk(path):
    for file in files:
        if file.endswith(tuple(extensions)):
            shutil.copy2(os.path.join(root, file), file_path)
            
5
On
src_path = r'C:\\', encoding='utf-8'

or

chmod 777 "your file"