2012-04-13 186 views
0

我在SD卡上創建了一個用於存儲不同類型文件的文件夾。如何在android中顯示SD卡上的文件夾中的文件?

現在,我只需要顯示點擊應用程序圖標上的所有文件。

任何人都可以爲我提供正確的源代碼嗎?

它的迫切!

在此先感謝!

+0

查一查谷歌,如何創建一個文件管理器:P – 2012-04-13 16:59:11

回答

0

你只是想要一個清單嗎?

File directory = getMyDirectory(); // do this however you want 
File[] files = directory.listFiles(); // gets an array of files in the dir. 
0
public void directoryPath(File path) { 
     // TODO Auto-generated method stub 
     if(path.exists()) { 
      File[] files = path.listFiles(); 
      for(int i=0; i<files.length; i++) { 
       //you can do what you want here 
      } 
     } 
    } 

上面的代碼把所有的文件夾...

相關問題