Узнать размер папки в Microsoft Windows достаточно просто через графический интерфейс.
Для этого, достаточно выделить интересующую папку левой кнопкой мыши, далее нажать правой кнопкой мыши и выбрать пункт Свойства
В окне Свойства указан размер Папки.
Узнать размер папки через командную строку немного сложнее.
Для этого, необходимо создать .cmd файл с содержимым:
@echo off
setlocal enableextensions disabledelayedexpansion
set "source=c:\Folder"
if not defined target set "source=%cd%"
set "size=0"
for /f "tokens=3,5" %%a in ('
dir /a /s /w /-c "%source%"
^| findstr /b /l /c:" "
') do if "%%b"=="" set "size=%%a"
echo %size%
Где C:\Folder - может быть заменен на интересующую вас папку. Отображение размера будет выполнено в байтах.
Learn the size of the folder in Microsoft Windows is quite simple through the graphical interface. To do this, it is enough to select the folder of interest with the left mouse button, then right mouse button click and click Properties
The Folder size is specified in the Properties.
Finding out the size of a folder via the command line is a bit more complicated.
To do this, you must create .cmd file with content:
rem @echo off
setlocal enableextensions disabledelayedexpansion
set "source=c:\Folder"
if not defined target set "source=%cd%"
set "size=0"
for /f "tokens=3,5" %%a in ('
dir /a /s /w /-c "%source%"
^| findstr /b /l /c:" "
') do if "%%b"=="" set "size=%%a"
echo %size%
Where C:\Folder - can be replaced to the required folder. The size will be displayed in bytes.