python实现文件内容全量的copy

本文介绍了一个Python脚本,用于从源文件复制内容并替换目标文件的内容,同时清空目标文件原有信息。此脚本使用正则表达式去除源文件中的空白字符。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

# coding:utf-8
import re
import os,os.path

def file_cp(path,path2):
    #path = 
    #path2 ='D:/testpy/test/config.properties'
    if not os.path.exists(path2):
        print ('file not exist')
        return
    if not os.path.exists(path):
        print ('path not exist')
        open(path,'w')
        
    f1 = open(path, 'r+')
    infos = f1.read()
    line_new = re.sub(r' ', '', infos)

    f2 = open(path2, 'r+')
    infos2 = f2.read()
    line_new2 = re.sub(r' ', '', infos2)

    f1.seek(0)  # 将指针位置指到文件开头(注意:一定要有这步操作,不然无法清空文件)
    f1.truncate()  # 清空文件内容(仅当以 "r+"   "rb+"    "w"   "wb" "wb+"等以可写模式打开的文件才可以执行该功能)
    f1.write(line_new2)
    f1.close()
    
file_cp('D:/testpy/config.properties','D:/testpy/test/config.properties')

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值