1
0
mirror of https://github.com/pConst/basic_verilog.git synced 2025-01-14 06:42:54 +08:00
basic_verilog/scripts/find_large_files.bat

11 lines
332 B
Batchfile
Raw Normal View History

2021-10-28 10:02:41 +03:00
@echo off
rem ------------------------------------------------------------------------------
rem find_large_files.bat
rem Konstantin Pavlov, pavlovconst@gmail.com
rem ------------------------------------------------------------------------------
forfiles /s /c "cmd /c if @fsize GTR 1000000000 echo @path"
pause
exit