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

org.aksw.commons.io.util.symlink.SymbolicLinkStrategy Maven / Gradle / Ivy

package org.aksw.commons.io.util.symlink;

import java.io.IOException;
import java.nio.file.Path;

public interface SymbolicLinkStrategy {
	boolean isSymbolicLink(Path path);
	void createSymbolicLink(Path link, Path target) throws IOException;
	Path readSymbolicLink(Path link) throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy