I want to list the files in a folder but not sub-folders. DIR enables you to list specific types of files (hidden, archive ready etc) and also only folders but I cannot see how to list only files.
I need the following statement to return files for further processing, but folder names are messing things up!
for /f %%a in ('dir /b %csvPath%') do (
)
dir /b /a-dwill give you files without directories. Note there is no space between/a-d. The ‘-‘ says “NOT” directories.From the
dir /?help information: