Reading folders in x86
I want to know if there is a way to read the name of sub-folders and files of given path recursively in assem开发者_开发技巧bly x86
You'll need to call FindFirstFile() (or FindFirstFileEx()), FindNextFile() (or FindNextFileEx()) and FindClose().
Generic examples of how to call the Windows API in assembler can be found elsewhere on stackoverflow.
精彩评论