"Where tabulator (?) is used as separator" ??? If you want to open the file with Excel, then the simplest option is to use commas as a delimiter (.CSV format). Since a comma can appear in a file name, you want to enclose the names in quotes.
If you are sorting by name, then a simple FOR is your most efficient option, since it always sorts by name. You can use <nul SET /P to output each filename to a .CSV file without introducing a new line.
@echo off
<nul (
for %%F in (*) do set /p =""%%F","
) >fileList.csv
If you really want to use the DIR command, then you need FOR /F. The only reason I can see to do so is if you want to change the sort order. I set EOL=: to guard against the unlikely possibility of a file name starting with a semicolon. A valid file name (or file path) can never start with a colon.
@echo off
<nul (
for /f "eol=: delims=" %%F in ('dir /b /o:n') do set /p =""%%F","
) >fileList.csv