python program to copy file

saurabh belote - Sep 22 '21 - - Dev Community
from shutil import copyfile
copyfile("/root/a.txt", "/root/b.txt")
Enter fullscreen mode Exit fullscreen mode
. . . . . . . . . . . . . . . . . . .