标签:copy class pytho div 一个 操作 with open 拷贝 coding
[习题] 指定一个源文件,实现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
只拷贝了文件内容,文件元信息并未拷贝。
标签:copy class pytho div 一个 操作 with open 拷贝 coding
原文地址:http://www.cnblogs.com/i-honey/p/7735709.html