Android Open Source - file-browser File System






From Project

Back to project page file-browser.

License

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.

Java Source Code

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);

}




Java Source Code List

com.hglstn.filebrowser.FileBrowserFragment.java
com.hglstn.filebrowser.FileInfoAdapter.java
com.hglstn.filebrowser.FileInfo.java
com.hglstn.filebrowser.FileSystem.java
com.hglstn.filebrowser.LocalFileSystem.java
com.hglstn.filebrowser.MainActivity.java