How to get a list of files in a directory?

How to get a list of files in a directory?

BY 15 Apr 2014 Native Application Development

In Android , use this:

File f = new File(filePath);

File[] files = f.listFiles();

How to do this in Tizen???

How to get all files in a directory???

Written by