Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
29236 ディスカッション

saving data files

diana_g_1
ビギナー
748件の閲覧回数

Hi, I'm writing a graphic program in fortran and I want a menu option that save me the informations of the figure that the user draw. Then I think to open a txt file and write into it informations. The program save by default the txt file in the same directory of the program, instead I want that the user can choose the directory where to save it. Is this possible? How can I do it?

0 件の賞賛
4 返答(返信)
Anthony_Richards
新規コントリビューター I
748件の閲覧回数

Is this a QuickWin program (you mention 'menu' item...).
When building a name for your textfile, you can always add a full path to the folder to which you want to save it.
If the folder doesn't exist, you can create one using MAKEDIRQQ. You can changedirectory using CHANGEDIRQQ.

Look up the Windows API function GETSAVEFILENAME for opening a SaveAs common dialog box which allows you to navigate to the folder of choice and create one if required, returning a full-path filename for the file you want to save data to..

andrew_4619
名誉コントリビューター III
748件の閲覧回数

There is a Intel fortran sample showing how to use Windows API function GETSAVEFILENAME 

SergeyKostrov
高評価コントリビューター II
748件の閲覧回数
>>...The program save by default the txt file in the same directory of the program, instead I want that the user can choose >>the directory where to save it. Is this possible?.. Yes and you need to initialize lpstrInitialDir member of OPENFILENAME structure passed to GetSaveFileName function.
diana_g_1
ビギナー
748件の閲覧回数

thank you very much to everyone!

返信