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

cp工具

时间:2017-07-16 18:30:17      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:exit   read   分享   pen   lin   练习   argv   拷贝   pre   

练习,利用b模式,编写一个cp工具,要求如下:
  1. 既可以拷贝文本又可以拷贝视频,图片等文件
  2. 用户一旦参数错误,打印命令的正确使用方法,如usage: cp source_file target_file
  提示:可以用import sys,然后用sys.argv获取脚本后面跟的参数
技术分享
 1 import sys
 2 #python cp source_file target_file
 3 if len(sys.argv) < 3:
 4     print(usage: cp source_file target_file)
 5     exit()
 6 
 7 with open(r%s%sys.argv[1],rb) as read_f, 8     open(r%s%sys.argv[2],wb) as write_f:
 9     for line in read_f:
10         write_f.write(line)
View Code

 

cp工具

标签:exit   read   分享   pen   lin   练习   argv   拷贝   pre   

原文地址:http://www.cnblogs.com/wangmengzhu/p/7191015.html

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