The API equivalent is here https://docs.microsoft.com/en-us/windows/win32/api/fileapi/ https://docs.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-findfirstfilea https://docs.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-findnextfilea
but where do I get fileapi.h This is a far as I got
Quote
To write a Windows program in C or C++, you must install the Microsoft Windows Software Development Kit (SDK) or Microsoft Visual Studio.
At least DOS had built in functions. (INT 21h etc
Title: Re: About WIN API programming
Post by: Pete on February 11, 2021, 02:37:52 pm
There are variations to get all directories, all directories and files, etc. Also, the /b which is the (bare) files switch, will only produce the directory and file names, without the other info. If you use that switch, the FOR NEXT loop, which discards header info, must be removed.
Zach and Mark have a few posts about using pipecom (cross platform method) to get files. Have you seen those?
Also, I may be mistaken at what you are asking here, but this is how I interpreted the post.
Pete
Title: Re: About WIN API programming
Post by: SpriggsySpriggs on February 11, 2021, 03:11:20 pm
@Pete Yep! Pipecom would be great for file listings.
@NOVARSEG If you insist on it, just search up FindFirstFile on Google. It will be one of the first results.
Title: Re: About WIN API programming
Post by: Pete on February 11, 2021, 03:27:45 pm
What Zach said... BUT use DuckDuckGo! Google sucks. Suppressors of Free Speech.
I just did that. Ah, so you also want to find a particular file in that? That just adds a search string function, which can be made in QB64, but it all depends on the parameters of the search. The first file that starts with "c" is pretty simple. Wildcards are more difficult to code for, etc.