Есть часть данных, которые не должны попадать в вывод( по крайне мере когда я тестировал).
Код:
PS > Get-FTPChildItem ubuntu-releases/15.04/*.torrent -Session $Session | Sort ModifiedDate
Parent: ftp://mirror.yandex.ru/ubuntu-releases/15.04
Dir Right Ln User Group Size ModifiedDate Name
--- ----- -- ---- ----- ---- ------------ ----
- rw-rw-r-- 1 ftp ftp 43KB 26.03.2015 22:24:00 ubuntu-15.04-beta2-desktop-amd64.iso.torrent
- rw-rw-r-- 1 ftp ftp 45KB 26.03.2015 22:24:00 ubuntu-15.04-beta2-desktop-i386.iso.torrent
- rw-rw-r-- 1 ftp ftp 24KB 26.03.2015 22:28:00 ubuntu-15.04-beta2-server-amd64.iso.torrent
- rw-rw-r-- 1 ftp ftp 24KB 26.03.2015 22:28:00 ubuntu-15.04-beta2-server-i386.iso.torrent
ftp://mirror.yandex.ru/ubuntu-releases/15.04/ubuntu-15.04-beta2-desktop-amd64.iso.torrent
PS > Get-FTPChildItem ubuntu-releases/15.04/*.torrent -Session $Session | Sort ModifiedDate | Select -L
ast 1
ftp://mirror.yandex.ru/ubuntu-releases/15.04/ubuntu-15.04-beta2-desktop-amd64.iso.torrent
PS > Get-FTPChildItem ubuntu-releases/15.04/*.torrent -Session $Session | Where {$_.Name} | Sort Modifi
edDate | Select -Last 1
Parent: ftp://mirror.yandex.ru/ubuntu-releases/15.04
Dir Right Ln User Group Size ModifiedDate Name
--- ----- -- ---- ----- ---- ------------ ----
- rw-rw-r-- 1 ftp ftp 24KB 26.03.2015 22:28:00 ubuntu-15.04-beta2-server-amd64.iso.torrent