I am developing a C++ application for win32 console
I need to get list of files in my application directory
(for example if my application had been started in C:\arash\app\
I need list of files in this folder)
I searched and find FindFirstFile
function in windows.h
header , But this function need a directory path .
Can I use this function for getting list of files in my application running directory?
Thanks