public interface IProcess {

...

Java Scan directory recurcively

by https://www.google.com/accounts/o8/id?id=AItOawn60BQ3j2wGqeAmwsTZFdMd0YURb5dAR2s, December 14, 2010 10:08, No refactoring, tagged with java, file, Directory, thread

I try to write classes to s...

55502f40dc8b7c769880b10874abc9d0 Talk
public static String getRelativePath(File file, File relativeTo) throws IOException {
		/*
		 * windows seems in some cases not to stop getParent() at 'c:\', which I
...

Java get path of a File relative...

by lord alcol, August 18, 2008 17:23, 3 refactorings, tagged with java, file, path

I call:
File f = new File(...

A9c8a6d8eed437bb33d504cae365bf57 Talk
public static boolean fileContentsEquals(File file1, File file2) {
		InputStream is1 = null;
		InputStream is2 = null;
...

Java fileContentsEquals

by lord alcol, August 18, 2008 09:09, 3 refactorings, tagged with java, file, io

This method checks if the c...

A9c8a6d8eed437bb33d504cae365bf57 Talk
public PreviewTreeModel(Collection<FileDescription> files)
	{
...

Java Create a tree out of a coll...

by Loid, March 02, 2008 19:14, 1 refactoring, tagged with speed, file, tree

I would like to transform a...

29389e14fe7aea8d5517c69660b3964d Talk