[info.bat]
@echo off
:init_vars
if [%1]==[] goto what_file
if not exist %1 goto what_file
goto show_info
:show_info
echo.
echo General information
echo -------------------
echo Fully qualified name (%%~f1): %~f1
echo Drive letter (%%~d1): %~d1
echo Path (%%~p1): %~p1
echo File name (%%~n1): %~n1
echo File extension (%%~x1): %~x1
echo Date time (%%~t1): %~t1
echo Size (%%~z1): %~z1
echo File attributes (%%~a1): %~a1
goto show_combinations
:show_combinations
echo.
echo Some possible combinations
echo --------------------------
echo Drive and path (%%~dp1): %~dp1
echo Filename and extension (%%~nx1): %~nx1
echo Path using short names (%%~fs1) : %~fs1
echo.
goto eof
:what_file
echo Please provide valid file.
goto eof
:eof
echo Press any key to quit
pause > NUL
Simply call it using something like:
[info_call.bat]
@echo off
call info test_file_info.longext
These allow you to get: file size, date time, etc. Really useful stuff =D.
Have fun!
No comments:
Post a Comment