1 package org.coolreader.crengine;
2 
3 public interface FileInfoOperationListener {
4 	/**
5 	 * Notify about file or directory operation result.
6 	 * @param fileInfo the object on which the operation was performed.
7 	 * @param errorStatus result of the operation, 0 - if successful, otherwise - error code.
8 	 */
onStatus(FileInfo fileInfo, int errorStatus)9 	void onStatus(FileInfo fileInfo, int errorStatus);
10 }
11