Is there an equivalent of the lpstrDefExt member of OPENFILENAME struct used in the Win32 function GetSaveFileName?

Here's description from MSDN:

LPCTSTR lpstrDefExt

The default extension. GetOpenFileName and GetSaveFileName append this extension to the file name if the user fails to type an extension. This string can be any length, but only the first three characters are appended. The string should not contain a period (.). If this member is NULL and the user fails to type an extension, no extension is appended.

So if lpstrDefExt is set to "txt" and the user types "myfile" instead of "myfile.txt", the function still returns "myfile.txt".

link|improve this question

feedback

1 Answer

Not sure what exactly LPCTSTR lpstrDefExt is trying to do but Qt documentation gives the following example

 QString fileName = QFileDialog::getSaveFileName(this, tr("Save File"),
                            "/home/jana/untitled.png",
                            tr("Images (*.png *.xpm *.jpg)"));

http://doc.qt.nokia.com/latest/qfiledialog.html#getSaveFileName

link|improve this answer
In Windows, if you get a Save File dialog from, say, Notepad, and you type just 'a' instead of 'a.txt', the file created wouldn't be 'a.' (i.e. without extension), it would be 'a.txt'. – satuon Oct 29 '11 at 15:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.