E/UpdatesSettings( 7146): File write failed: java.io.IOException: open failed: EBUSY (Device or resource busy)
I/DownloadManager( 7621): Initiating request for download 11
W/DownloadManager( 7621): Aborting request for download 11: while opening destination file: java.io.FileNotFoundException: /storage/sdcard0/sysupdater/***.partial: open failed: EBUSY (Device or resource busy)
D/DownloadManager( 7621): cleanupDestination() deleting /storage/sdcard0/sysupdater/***.partial
我用DownloadManager
下载文件,有时候是这样的。谁能告诉我为什么和如何解决这个问题?
发布于 2013-07-10 04:15:57
我也遇到过类似的问题。
要避免FileNotFoundException,请确保:
文件夹=新建文件(FOLDER_PATH);如果(!folder.exists()) { folder.mkdir();}
https://stackoverflow.com/questions/12967012
复制相似问题