Version: (using KDE KDE 3.3.0) Installed from: Compiled From Sources When using KFileDialog to get a save url or file, if I select an existing file the save dialog don't show a confirmation message to ask me if I want to overwrite the existing file or not. Perhapse I haven't searched enoutgh (because it's strange KDE doesn't provide such parameter), but I haven't found any parameter to ask confirmation. So, it's what I do: KURL url; bool tryAgain = true; while (tryAgain) { url = KFileDialog::getSaveURL(); if (url.isEmpty()) { tryAgain = false; } if (!KIO::NetAccess::exists(url, true, this) || KMessageBox::warningYesNo(this, "<qt>" + i18n("The file <strong>%1</strong> already exists. Do you wish to overwrite it?").arg(url.prettyURL()) + "</qt>", i18n("File Exists")) == KMessageBox::Yes) { tryAgain = false; } } Very heavy to do this, and the message can to not be the same as in other applications.
*** This bug has been marked as a duplicate of 102972 ***