The best way to move a file from one location to another is using the move() method from the shutil module.
Program 1: using shutil.move()'''
Program: Move a file.
Author: Code2care.org
Version: v 1.0
Date : 3rd July 2023
'''
import shutil
def python_move_file(source_file, dest_file):
try:
shutil.move(source_file, dest_file)
print(f"The File was moved from {source_file} to {dest_file}")
except IOError as e:
print(f"An error occurred while moving the file: {e}")
source_file = "data/myfile.csv"
destination_file = "prod/data/myfile.csv"
python_move_file(source_file, destination_file)
There are other methods that can be used to move a file.
Program 2: Using os.rename()import os
source_file = "c://data//file.csv"
destination_file = "d://prod//data//file.csv"
os.rename(source_file, destination_file)
Program 3: Using os.system()
import os
source_file = "c://data//file.csv"
destination_file = "d://prod//data//file.csv"
if os.name == "posix": # Unix/Linux/macOS
os.system(f"mv {source_file} {destination_file}")
elif os.name == "nt": # Windows
os.system(f"move {source_file} {destination_file}")
Program 4: Using os.replace()
import os
source_file = "c://data//file.csv"
destination_file = "d://prod//data//file.csv"
os.replace(source_file, destination_file)
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Python,
- Python: Convert Date to DateTime
- How to sort a List using Lambda in Python
- Python matplotlib segmentation fault: 11 macOS Big Sur
- What is Terminal Velocity and its Formula? How to calculate it programmatically?
- How to install Python 3.11 on Mac
- How to flatten a nested list in Python
- Python: Pandas Merge DataFrames on Index Example
- How to Run all Cells at Once Jupyter Notebook
- Python - Convert float to String
- How to add borders to tkinter label text
- How to Exit a Loop in Python Code
- [Python] Fix: ValueError: All arrays must be of the same length
- Sorting an array using Bubble Sort in Python Programming
- How to Unzip a file using Python
- Python: Merge DataFrames Pandas Outer Join Example
- Change label (text) color in tkinter
- Convert Float to String in Python
- Fix: fatal error: No such file or directory compilation terminated
- Python: Access index/counter of a for loop iteration
- Import Other Python Files Examples
- How to install Anaconda on Mac (M1/M2 Mac)
- Python Regular Expression to Find All Matches in List
- How to Read a binary File with Python
- How to disable warnings while Python file execution
- Know current Python Version
More Posts:
- Open Docker Desktop from macOS Terminal - Docker
- Eclipse Error The JVM Shared Library JavaVirtualMachines does not contain the JNI_CreateJavaVM symbol - Eclipse
- Fix: ModuleNotFoundError: No module named pandas - Python
- How to Word-Warp Console logs in IntelliJ - Java
- Python: Convert Set to a List - Python
- List of jars required for Struts2 project - Java
- How to install XML Tools Plugin Notepad++ - NotepadPlusPlus
- [Solution] fatal: not a git repository (or any of the parent directories): .git - Git