Skip to content

Instantly share code, notes, and snippets.

@julianshen
Created June 11, 2011 02:30
Show Gist options
  • Save julianshen/1020178 to your computer and use it in GitHub Desktop.
Save julianshen/1020178 to your computer and use it in GitHub Desktop.
observer = new FileObserver(this.getCacheDir().getAbsolutePath(), FileObserver.ALL_EVENTS) {
@Override
public void onEvent(int event, String path) {
Log.d("Observer","PATH: " + path +" EVENT: " + event);
}
};
observer.startWatching();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment