I want to move all text files from one folder to another folder using Python. I found this code:
import os, shutil, glob dst = \'/path/to/dir/Caches/com.app
Try this:
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)