digitalmars.D.learn - How to expand wildchar under dos ?
- John Xu (5/5) Mar 09 2023 Under dos, how to get wildchar matched file names?
- =?UTF-8?Q?Ali_=c3=87ehreli?= (4/5) Mar 10 2023 Have you tried dirEntries? It supports glob patterns:
Under dos, how to get wildchar matched file names? PS E:> dmd a.d PS E:> .\a.exe a.* args=["a.exe", "a.*"] d-glob doesn't function well under windows dos either.
Mar 09 2023
On 3/9/23 19:24, John Xu wrote:Under dos, how to get wildchar matched file names?Have you tried dirEntries? It supports glob patterns: https://dlang.org/library/std/file/dir_entries.html Ali
Mar 10 2023