Java教程

文件备份具体实现

本文主要是介绍文件备份具体实现,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
# 1.用户输入目标文件  sound.txt.mp3
old_name = input('请输入您需要备份的文件名: ')
# print(old_name)
# print(type(old_name))

# 2. 规划备份文件的名字
# 2.1 提取后缀 -- 找到名字中的点 -- 名字和后缀分离--最右侧的点才是后缀的点 -- 字符串查找某个字串rfind
index = old_name.rfind('.')

# 4.思考:有效文件才备份 .txt
if index > 0:
    # 提取后缀
    postfix = old_name[index]

# 2.2 组织新名字 = 原名字 + [备份] + 后缀
# 原名字就是字符串中的一部分字串 -- 切片[开始:结束:步长]
print(old_name[:index])
print(old_name[index:])
# new_name = old_name[:index] + '[备份]' + old_name[index:]
new_name = old_name[:index] + '[备份]' + postfix
print(new_name)

# 3.备份文件写入数据(数据和原文件一样)
# 3.1 打开  原文件  和  备份文件
old_f = open(old_name, 'rb')
new_f = open(new_name, 'wb')

# 3.2原文件读取,备份文件写入
# 如果不确认目标文件大小,循环读取写入,当读取出来的数据没有了终止循环
while True:
    con = old_f.read(1024)
    if len(con) == 0:
        # 表示读取完成了
        break

    new_f.write(con)

# 3.3 关闭文件
old_f.close()
new_f.close()
这篇关于文件备份具体实现的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!