This article has been read [post_view] times. This article has been read [post_view time="day"] times today. This article has been read [post_view time="month"] times this month. This article has been read [post_view time="year"] times this year. This article has 125 total words. (Including header) This article has been updated on [rup_display_update_date] [tweet] |
To view the filesize of each file in the current directory (in this example .txt text files) you can use this “loop” (FOR):
@echo off
for /f "tokens=*" %%A in ('dir /b *.txt') DO (echo %%~zA)
pause >nul
Enjoy.