The FreeDOS Project on Nostr: Unix shells have globbing where wildcards on the command line get expanded into ...
Unix shells have globbing where wildcards on the command line get expanded into filenames. Your program just gets a list of files.
DOS is a much simpler operating system and does not do globbing, each program has to interpret wildcards on its own.
The DOS kernel provides the findfirst & findnext functions to do this. Here's how to use them:
https://allthingsopen.org/articles/findfirst-findnext-functions-expand-wildcards-filenames
DOS is a much simpler operating system and does not do globbing, each program has to interpret wildcards on its own.
The DOS kernel provides the findfirst & findnext functions to do this. Here's how to use them:
https://allthingsopen.org/articles/findfirst-findnext-functions-expand-wildcards-filenames