We'll update docummentation - thank you for pointing. And please keep in mind - you need to compare for set bit and not for exact meaning. I mean do:
if ( dwAttributes & FILE_ATTRIBUTE_DIRECTORY )
and not like this:
if ( dwAttributes == FILE_ATTRIBUTE_DIRECTORY )
b/s directories also could have hidden and archive bits set. FYI.
P.S. And I'm still checking what's wrong with the logs you've kindly sent to us...
Alexander wrote:
Thank you Alexey! I understood. Simply it wasn't obvious from the SDK help that StarBurn_ISO9660JolietFileTree_GetAttributes returns WIN32API structure with attributes.