As the title dictates i am trying to locate the equivalent function to the Windows API function
HANDLE WINAPI FindFirstFile(
__in LPCTSTR lpFileName,
__out LPWIN32_FIND_DATA lpFindFileData
);
It takes a filename and writes the data to the second parameter, the files it returns are in alphabetical order.
I have taken a look at the File Manager system, I don't see anything there that can do that for me.
HANDLE WINAPI FindFirstFile(
__in LPCTSTR lpFileName,
__out LPWIN32_FIND_DATA lpFindFileData
);
It takes a filename and writes the data to the second parameter, the files it returns are in alphabetical order.
I have taken a look at the File Manager system, I don't see anything there that can do that for me.