6 lines
142 B
Python
6 lines
142 B
Python
import shutil
|
|
|
|
src = 'D:\\1_Projekte\\0_DISS\\1_Literatur\\mevec.bib'
|
|
dst = '.\\latex\\Literatur\\mevec.bib'
|
|
|
|
shutil.copyfile(src, dst)
|