开发者

Reading folders in x86

开发者 https://www.devze.com 2023-01-23 16:03 出处:网络
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 x86You\'ll need to call FindFirstFile() (or FindFirstFileEx()), FindNext

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消