保存的目录无法更改。
我写了以下代码:
import shutil
with open("test.wav", 'wb') as f:
shutil.move("app/", "/Users/xxx/Downloads")
我的应用程序名称是app,现在test.wav位于app/
下。但我想将数据保存在/Users/xxx/Downloads
下。所以我编写了这段代码,但它没有用。我想我应该使用f变量来更改保存目录,但我不明白如何解决这个问题。我该怎么做才能实现我的理想体系?
答案 0 :(得分:0)
您还必须指定文件名:
import shutil
with open("bhushan.txt", 'wb') as f:
shutil.move(str(f.name), "/home/bhushanpant/")
希望这会有所帮助:)
答案 1 :(得分:0)
import shutil
with open("test.wav", 'wb') as f:
# DO your operations
f.close() # You need to close as you open in wb
shutil.move(source, destination)