Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

how to move all html files from one directory to other using python

import shutil
import os
    
source_dir = '/path/to/source_folder'
target_dir = '/path/to/dest_folder'
    
file_names = os.listdir(source_dir)
    
for file_name in file_names:
    shutil.move(os.path.join(source_dir, file_name), target_dir)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #move #html #files #directory #python
ADD COMMENT
Topic
Name
4+8 =