I have used FindFirstFlashCard() and FindNextFlashCard() to locate my
storage card. My WIN32_FIND_DATA structure is m_lpwfdFlashCard, and this
structure's cFileName is set to "Storage Card".
Now I need to learn how to retrieve a file from this storage card.
Using CFileDialog, I tried this:
CFileDialog dlg(TRUE, L"bmp", m_lpwfdFlashCard->cFileName, 0, L"All Files
(*.*)|*.*");
But, the code will still not open to the storage card folder.
Further, the only way I have found to access the storage card using the
emulator device that I am running eVC4-SP4 through is to physically select
the storage card icon from the Pocket PC 2003's File Explorer.
What am I doing wrong?
How do I tell CFileDialog that I want it to open to the Storage Card?