Skip to content

Instantly share code, notes, and snippets.

@MOOOWOOO
Created March 14, 2016 01:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MOOOWOOO/001ffd40aed78a22bc87 to your computer and use it in GitHub Desktop.
Save MOOOWOOO/001ffd40aed78a22bc87 to your computer and use it in GitHub Desktop.
拷贝文件,不存在则跳过
from os.path import exists
if exists(r'/home/test.txt'):
shutil.copyfile(r'/home/test.txt', r'/home/root/')
else:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment