VG
Size: a a a
VG
AB
VG
VG
AB
AB
AB
VG
AB
VG
AB
AB
VG
🍅
$files = Get-ChildItem -LiteralPath $root -Files -RecurseЕсли в $files будет 150к записей, а файл с id всегда один, это не сильно оверкилл искать файл таким образом?
$file = $files | Where-Object -Property Name -CLike "$id*"
VB
$file = Get-ChildItem -LiteralPath $root -Files -Recurse | Where-Object -Property Name -CLike "$id*"
VB
VB
VB
🍅
VB