1. 程式人生 > >JDK原始碼詳解之File類

JDK原始碼詳解之File類

JDK原始碼詳解之File

1. 類釋義

2. 類方法

  • listFiles()
File[] 	listFiles()
Returns an array of abstract pathnames denoting the files in the directory denoted by this abstract pathname.

返回一個抽象路徑名陣列,該陣列表示由該抽象路徑名錶示的目錄中的檔案。

  • list()
String[] 	list()
Returns an array of strings naming the files and directories in the directory denoted by this
abstract pathname.

返回一個字串陣列,這個陣列的內容是由抽象路徑名錶示的目錄中的檔案以及資料夾。

3. 簡單示例