码迷,mamicode.com
首页 > 其他好文 > 详细

写copy函数

时间:2020-02-03 13:46:45      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:def   py函数   port   pat   import   exists   basename   random模块   content   

import os
def copy(path1, path2):
filename = os.path.basename(path1)
if os.path.isdir(path2) and os.path.isfile(path1):
path2 = os.path.join(path2, filename)
if os.path.exists(path2):
print("已有同名文件!")
with open(path1, "rb") as f1, \
open(path2, "wb") as f2:
content = f1.read()
f2.write(content)
copy(r‘G:\salar\day17\random模块.py‘, r‘G:\salar\day15‘)

写copy函数

标签:def   py函数   port   pat   import   exists   basename   random模块   content   

原文地址:https://www.cnblogs.com/hadibingjing/p/12255066.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!