Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. @echo off
  2.  
  3. rem フォルダをbatにD&Dしてフォルダ内のリスト取得
  4.  
  5. rem コマンドプロンプトに表示
  6. rem forfiles /p %~p1 /c "cmd /c echo @fname @ext"
  7.  
  8. rem テキストファイルに書き出し(batのある場所にtmp.txt一時作成)
  9. forfiles /p %1 /c "cmd /c echo @fname@ext>> %~p0\tmp0.txt"
  10.  
  11. setlocal enabledelayedexpansion
  12. for /f "delims=" %%a in (%~p0\tmp0.txt) do (
  13. set line0=%%a
  14. set line1=!line0:""=.!
  15. set line1=!line1:"=!
  16. echo !line1!>>%~p0\tmp1.txt
  17. )
  18. rem type %~p0\tmp0.txt > %~p0\rawlist_%~n1.txt
  19. type %~p0\tmp1.txt > %~p0\FILELIST01_%~n1.txt
  20.  
  21. del %~p0\tmp0.txt
  22. del %~p0\tmp1.txt
  23.  
  24. endlocal
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement