Introduction
Here is the source code for Main.java
Source
//package com.java2s;
//License from project: GNU General Public License
public class Main {
private static boolean containsDirectory(String name) {
if (name.contains("/")) {
return true;
}
return false;
}
}