全屏
Java Java File.listFiles()方法具有以下语法。
public File [] listFiles()
示例
在下面的代码显示如何使用File.listFiles()方法。
import java.io.File;
// At: W w W. y I i ba I.C o m
public class Main {
public static void main(String[] args) {
// create new file
File f = new File("c:/python3");
// returns pathnames for files and directory
File[] paths = f.listFiles();
// for each pathname in pathname array
for (File path : paths) {
System.out.println(path);
}
}
}
上面的代码生成以下结果。
c:python3DLLs
c:python3Doc
c:python3include
c:python3Lib
c:python3libs
c:python3LICENSE.txt
c:python3NEWS.txt
c:python3python.exe
c:python3python3.dll
c:python3python35.dll
c:python3pythonw.exe
c:python3README.txt
c:python3Scripts
c:python3cl
c:python3Tools
c:python3vcruntime140.dll
c:python3worksp
分享到:
0评论