All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jpattern.core.textfiles.IFile Maven / Gradle / Ivy

There is a newer version: 3.6.2
Show newest version
package com.jpattern.core.textfiles;

import java.io.Serializable;

/**
 * 
 * @author Francesco Cina'
 *
 * 09/giu/2010
 */
public interface IFile extends Serializable {
	
	String getPath();
	
	String getName();
	
	IFileReader getFileReader();
	
	IFileWriter getFileWriter(boolean append);
	
	boolean exists();
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy