带老帮忙看看其中“con = old_f.read(1024)”这段也就是14行的代码时什么意思,是以二进制的形式读写文件,然后把二进制写进了新的文件么,1024代表了什么,求解答
def file_backup():
'''
-------调用请使用file_backup()------
'''
old_name = input('请输⼊您的⽂件名:')
index = old_name.rfind('.')
if index > 0:
postfix = old_name[index:]
prefix = old_name[:index]
new_name = prefix + '[备份]' + postfix
old_f = open(old_name, 'rb')
new_f = open(new_name, 'wb')
while True:
con = old_f.read(1024)
if len(con) == 0:
break
new_f.write(con)
old_f.close()
new_f.close()
else:
print(f'file"{old_name}"no find,please reinput')
file_backup()
我把文件以"w"形式打开,将文件内容写入新文件后,出现了错误,不太明白,还请解答
```python
def file_backup():
'''-------文件备份函数------
-------调用请使用file_backup()------
'''
old_name = input('请输⼊您要备份的⽂件名:')
index = old_name.rfind('.')
if index > 0:
postfix = old_name[index:]
prefix = old_name[:index]
new_name = prefix + '[备份]' + postfix
old_f = open(old_name, 'r')
new_f = open(new_name, 'w')
while True:
con = old_f.read()
if len(con) == 0:
break
new_f.write(con)
old_f.close()
new_f.close()
else:
print(f'file"{old_name}"no find,please reinput')
file_backup()
file_backup()