lfs cleanup

Get-ChildItem -Path 'PATHOFROOTDIRECTORY' | foreach {
    Get-ChildItem -Path "$($_.FullName)" -ErrorAction Ignore | Remove-Item -Force -Recurse
}

Last updated