Saltar al contenido

mover archivos de una carpeta a otra ejemplo de código python

Si encuentras algún error con tu código o trabajo, recuerda probar siempre en un ambiente de testing antes añadir el código al trabajo final.

Ejemplo 1: archivo de movimiento de Python

import os, shutil
#move picture.png from /some/dir/ to /another/dir/Pictures/
shutil.move('/some/dir/picture.png','/another/dir/Pictures/')

Ejemplo 2: mover archivo python

import os
import shutil

os.rename("path/to/current/file.foo","path/to/new/destination/for/file.foo")
shutil.move("path/to/current/file.foo","path/to/new/destination/for/file.foo")
os.replace("path/to/current/file.foo","path/to/new/destination/for/file.foo")

Ejemplo 3: archivo os.move

import os
import shutil

os.rename("path/to/current/file.foo","path/to/new/destination/for/file.foo")
shutil.move("path/to/current/file.foo","path/to/new/destination/for/file.foo")
os.replace("path/to/current/file.foo","path/to/new/destination/for/file.foo")

Ten en cuenta dar visibilidad a este tutorial si si solucionó tu problema.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *