diff --git a/src/main/java/teetime/framework/FileSearcher.java b/src/main/java/teetime/framework/FileSearcher.java
new file mode 100644
index 0000000000000000000000000000000000000000..faebb333af5c460048750c51ea5dfebe4eccc5e3
--- /dev/null
+++ b/src/main/java/teetime/framework/FileSearcher.java
@@ -0,0 +1,20 @@
+package teetime.framework;
+
+import java.io.IOException;
+import java.util.StringTokenizer;
+
+public class FileSearcher {
+
+	public static void main(final String[] args) throws IOException {
+		final String classpath = System.getProperty("java.class.path");
+		final String pathSeparator = System.getProperty("path.separator");
+		// System.out.println(classpath);
+		// System.out.println(pathSeparator);
+
+		StringTokenizer st = new StringTokenizer(classpath, pathSeparator);
+		while (st.hasMoreTokens()) {
+			System.out.println(st.nextToken());// st.nextToken());
+		}
+	}
+
+}