使用Python拷贝文件到另一个文件中。

1、copy.py

#coding:utf-8
import os
from sys import argv

script,from_file,to_file = argv

#提示
print "把文件%s内容拷贝到文件%s中."%(from_file,to_file)

#先把from_file打开读取
input = open(from_file)
inputData = input.read()

#判断新文件是否存在
print "新文件是否存在:%r" %os.path.exists(to_file)

output = open(to_file,'w')
#开始写
output.write(inputData)

#关闭
output.close()
input.close()



2、命令

python目录拷贝 python3拷贝文件_python目录拷贝

3、结果

    这样就把test.txt内容拷贝到test1.txt中了