package de.peeeq.wurstio; import java.io.File; public class UtilsIO { public static void sleep(int i) { try { Thread.sleep(i); } catch (InterruptedException e) { // ignore } } /** * Get the method name for a depth in call stack.
* Utility function * * @param depth depth in the call stack (0 means current method, 1 means call * method, ...) * @return method name */ public static String getMethodName(final int depth) { StackTraceElement[] ste = Thread.currentThread().getStackTrace(); return ste[depth + 2].getMethodName(); } /** * Get the method name of the calling method, ignoring the given current class * * @return method name */ public static String getMethodName(String currentClass) { StackTraceElement[] ste = Thread.currentThread().getStackTrace(); for (int i = 2; i < ste.length; i++) { if (!ste[i].getClassName().startsWith(currentClass)) { return ste[i].getMethodName(); } } return ""; } public static void mkdirs(File dir) { boolean res = dir.mkdirs(); if (!res) { throw new RuntimeException("Directory " + dir + " could not be created."); } } }