Created
March 14, 2016 01:51
-
-
Save MOOOWOOO/001ffd40aed78a22bc87 to your computer and use it in GitHub Desktop.
拷贝文件,不存在则跳过
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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