首页 > 编程语言 > 详细

Python [习题] 文件操作:目录间copy 文件

时间:2017-10-26 12:22:23      阅读:232      评论:0      收藏:0      [点我收藏+]


[习题] 指定一个源文件,实现copy到目标目录。
例如把/tmp/sample1.txt 拷贝到/tmp/sample2.txt
原文件需要有读权限(默认rt权限),目标文件需要给写(w即可)权限。

 

In [8]: with open(‘/tmp/sample1.txt‘,encoding=‘UTF-8‘) as f1:
   ...:     with open(‘/tmp/sample2.txt‘,‘w‘,encoding=‘utf-8‘) as f2:
   ...:         content = f1.read()
   ...:         f2.write(content)
   ...:

In [9]: ls
 C:\python\171025 的目录
2017/10/26  09:00    <DIR>          .
2017/10/26  09:00    <DIR>          ..
2017/10/25  19:20            13,099 sample1.txt
2017/10/26  09:01            13,099 sample2.txt

  

只拷贝了文件内容,文件元信息并未拷贝。

Python [习题] 文件操作:目录间copy 文件

原文:http://www.cnblogs.com/i-honey/p/7735709.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!