简体   繁体   中英

The method listFiles(Path, boolean) is undefined for the type FileSystem

I am getting The method listFiles(Path, boolean) is undefined for the type FileSystem. Has anyone came across this issue ?

Configuration conf = new Configuration();
FileSystem fs = FileSystem.get(conf);
RemoteIterator<LocatedFileStatus> itr =  fs.listFiles(srcPath,true);

You're probably importing the java Filesystem, not the Apache one. Check your imports.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM