请问大家我这个python的文件备份有什么问题吗?为什么运行之后没有显示备份后的文件呢?
```python
# 文件备份#############################################################
old_name = input('请输入需要备份的文件名')
index = old_name.rfind('.')
if index > 0:
postfix = old_name[index:] # 提取后缀
new_name = old_name[:index] + '[备份]' + postfix
old_f = open(old_name, 'rb') # 以二进制打开一定没问题
new_f = open(old_name, 'wb')
while True:
con1 = old_f.read(1024)
if len(con1) == 0:
break # 读取完成,终止循环
new_f.write(con1)
old_f.close()
new_f.close()
```