Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.util.ArrayList;

public class Main {
    public static boolean startsWithFilePath(ArrayList<String> filePaths, String filePath) {
        String lowerCaseFilePath = filePath.toLowerCase();
        for (String onePath : filePaths) {
            if (lowerCaseFilePath.startsWith(onePath.toLowerCase())) {
                return true;
            }
        }
        return false;
    }
}