Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在使用函数重命名之前将 .old 连接到文件名
这会起作用吗:
old = RemoteFileName + '.out' ftp.rename (RemoteFileName,old)
是的,该代码应该可以工作。
如果值为 ,RemoteFileName那么readme.txt您的第一行将使用该值创建一个新字符串readme.txt.out并将其分配给变量old。的值RemoteFileName没有改变。
RemoteFileName
readme.txt
readme.txt.out
old