public static String winQuote2(S text) { if (text == null) return null; return "\"" + text .replace("\"", "\\\"") .replace("\n", "\\n") .replace("\r", "\\r") + "\""; } static S winQuote(File f) { ret winQuote(f.getAbsolutePath()); }