0

I want to open a file using some POCO API from my C++ program. For example i have a file with some extension i.e .docx, .xlsx which is associated to it's default supported application, let say .docx with MSWord and .xlsx with MSExcel.

So is there any API in POCO which can launch files with it's associated application.

Vivek Mahto
  • 194
  • 1
  • 17

1 Answers1

0

There is no POCO API for doing this. Look here for an exemple of the Windows API ShellExecute which you can use. More complete documentation here.

Patricklaf
  • 306
  • 1
  • 6