I have following code QFiledialog fd; QString dirpath = fd.getSaveFileName(this);
Here I don't want QFiledialog to prompt for over write confirmation when I select file to get it's path
Thanks in advance.
I have following code QFiledialog fd; QString dirpath = fd.getSaveFileName(this);
Here I don't want QFiledialog to prompt for over write confirmation when I select file to get it's path
Thanks in advance.
Pass
QFileDialog::DontConfirmOverwrite
as parameter, look at the documentation forgetSaveFileName
function here.