Back to project page file-browser.
The source code is released under:
Copyright (c) 2014, Hyusein Gyulyustan All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are m...
If you think the Android project file-browser listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.hglstn.filebrowser; // www .ja v a 2 s . co m import java.util.List; /** * Common file system interface. */ public interface FileSystem { /** * List the content of the specified directory. * * @param directoryPath * - path to list * @return list of FileInfo entries. */ public List<FileInfo> list(String directoryPath); }