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

com.freya02.botcommands.internal.utils.IOUtils Maven / Gradle / Ivy

package com.freya02.botcommands.internal.utils;

import java.nio.file.Path;

public final class IOUtils {

	public static String getFileExtension(Path path) {
		final String pathStr = path.toString();
		return pathStr.substring(pathStr.lastIndexOf('.') + 1);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy