2013年2月3日星期日

[教學] Windows 輸出資料夾內檔案清單(無副檔名)

[Tutorial] Export file list in a directory (without file type association)

新增文字文件檔案 (例如開啟Notepad) ,把以下指令貼上,另存成 exportFileList.bat


@echo off for /f "tokens=*" %%a in ('dir /b /a-d') do echo %%~na>>output.txt

把 bat 放到需要匯出檔案清單的資料夾,雙點擊執行,就會產生一個 output.txt 裡面載有檔案清單,但會包括 exportFileList ,記得刪除就可。

之後可以複製到 Excel 等用。

1 則留言:

  1. 不好意思,那如果要含有副檔名該怎麼做呢?
    感謝您的教學

    回覆刪除