sbool renameFileInfoBox(File a, File b) { if (a == null || b == null) false; bool result = renameFile(a, b); infoBox("Renaming " + f2s(a) + " to " + f2s(b) + "? " + yesNo2(result)); ret result; } sbool renameFileInfoBox(File a, S newName) { ret renameFileInfoBox(a, fileInSameDir(a, newName)); }