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