我正在尝试创建批处理脚本,我需要检查下载文件夹中存在的test.html文件的文件大小。如果filesize等于某个值,则执行say ABC命令,如果filesize等于不同的值则执行一些不同的命令 请建议我语法或示例
答案 0 :(得分:1)
@echo off
set "file_path=test.html"
for %%# in ("%file_path%") do set file_size=%%~z#
if %file_size% EQU 190 (
call some_command
) else (
call some_other_command
)
请注意%file_size%
将以字节为单位。