preguntar acerca de pathlib
4
réponses
Copier le fichier avec pathlib en Python
j'essaye de copier un fichier avec pathlib
import pathlib
import shutil
my_file=pathlib.Path('/etc/hosts')
to_file=pathlib.Path('/tmp/foo')
shutil.copy(my_file, to_file)
je bénéficier de cette exception:
/home/foo_egs_d/bin/python /home/foo_egs_ …
demandé sur
1970-01-01 00:33:35