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

com.github.cleydyr.dart.command.files.FileCounter Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package com.github.cleydyr.dart.command.files;

import java.nio.file.Path;

public interface FileCounter {
    long getProcessableFileCount(Path inputFolderPath, Path outputFolderPath) throws FileCounterException;

    boolean hasAllowedExtensionSameFolder(String fileName);

    boolean hasAllowedExtensionDifferentFolders(String fileName);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy