python檔案複製 python檔案的複製

2021-10-21 06:03:52 字數 731 閱讀 3780

python複製文字的兩種方法:#!/usr/bin/env python

# -*- coding:utf-8 -*-

import os

### 方法一, 讀寫檔案進行複製

#1、建立檔案test1.txt

f1 = open('test1.txt', 'w+')

f1.writelines(['hello\n', 'world!\n', 'welcome to python study!\n'])

f1.close()

if os.path.exists('test1.txt'):

print u'檔案建立成功!'

# 2、複製檔案

f1 = open('test1.txt')

f2 = open('test2.txt', 'w')

f2.write(f1.read())

f1.close()

if os.path.exists('test2.txt'):

print u'檔案複製成功!'

f2.close()

print '#' * 30

### 方法二, 匯入shutil模組實現拷貝

import shutil

shutil.copyfile('test1.txt', 'test3.txt')

if os.path.exists('test3.txt'):

print u'檔案test3複製成功!'

Python檔案複製(txt檔案)

功能 這個py指令碼是把乙個txt檔案 原始檔 複製到另乙個txt檔案 目的檔案 裡面 演算法思路 程式首先判斷原始檔 用exists函式判斷 和目的檔案是否存在,如果不存在則輸出檔案路徑不存在,如果存在則先把原始檔讀出來,再寫到目的檔案中去 coding utf 8 from sys import...

Python實現檔案複製

如下 encoding utf 8 本程式實現檔案複製功能 source file open d.txt r encoding utf 8 dst file open e bat.txt a encoding utf 8 a表示追加,如果沒有該檔案則新建它 while true content so...

python 檔案複製壓縮

import os import time 這裡是需要檔案所在的位置 source c my documents c code 轉換完成之後放到的檔案目錄 target dir e backup 判斷有沒有該檔案,沒有就建立乙個 if not os.path.exists target dir os...