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