Android程式函式 將assets資料夾下的檔案複製到手機的sd卡中(包括子資料夾)

yangxi_001發表於2014-07-03

最近在做個功能是將asset資料夾下的所有檔案(包括子檔案)全部拷貝出來到指定目錄下。所用的方法無非是用AssetManager。但是這裡 有個問題是也要講子資料夾和子檔案都要拷貝出來。到網上Google了下,也到baidu搜尋了下,發現了很多類似問題。但好像都有問題。顯然只能做到將asset直接目錄下的檔案拷貝出來,但子資料夾拷貝不出來,而且,碰到資料夾,會拋異常。無奈自己只好動手寫了個。如下:

 private void CopyAssets(String assetDir,String dir) {
            String[] files;    
             try    
             {    
                 files = this.getResources().getAssets().list(assetDir);    
             }    
             catch (IOException e1)    
             {    
                 return;    
             }    
             File mWorkingPath = new File(dir);
             //if this directory does not exists, make one. 
             if(!mWorkingPath.exists())    
             {    
                 if(!mWorkingPath.mkdirs())    
                 {    

                 }    
             }    

             for(int i = 0; i < files.length; i++)    
             {    
                 try    
                 {    
                     String fileName = files[i]; 
                     //we make sure file name not contains '.' to be a folder. 
                     if(!fileName.contains("."))
                     {
                         if(0==assetDir.length())
                         {
                             CopyAssets(fileName,dir+fileName+"/");
                         }
                         else
                         {
                             CopyAssets(assetDir+"/"+fileName,dir+fileName+"/");
                         }
                         continue;
                     }
                     File outFile = new File(mWorkingPath, fileName);    
                     if(outFile.exists()) 
                         outFile.delete();
                     InputStream in =null;
                     if(0!=assetDir.length())
                         in = getAssets().open(assetDir+"/"+fileName);    
                     else
                         in = getAssets().open(fileName);
                     OutputStream out = new FileOutputStream(outFile);    商賬追收

                     // Transfer bytes from in to out   
                     byte[] buf = new byte[1024];    
                     int len;    
                     while ((len = in.read(buf)) > 0)    
                     {    
                         out.write(buf, 0, len);    
                     }    

                     in.close();    
                     out.close();    
                 }    
                 catch (FileNotFoundException e)    
                 {    
                     e.printStackTrace();    
                 }   iphone拍照小技巧


                 catch (IOException e)    
                 {    
                     e.printStackTrace();    
                 }         
            }

這裡主要用到了遞迴,其他倒是沒有什麼。倒是這裡還有個存在的問題:如何判斷路徑的是個資料夾還是檔案,我目前使用的方法就是判斷有沒有字尾,這個可能存在問題。

相關文章