Gist: psisContainer > Filter Directories using Powershell

To filter the folders (i.e., directories) available in the current context, the following property can be used with a predicate:$_.psiscontainer

In essence, it returns a boolean indicating whether the current object is a directory or not. Hence, the following script prints the absolute path of the each sub-directories from the current context.

ls –r | ?{$_.psiscontainer} | select fullname
Advertisement

Remove SVN binding

By invoking the following powershell commands, svn binding can be removed effectively from the current source directory.

Get-ChildItem -Include .svn -Recurse -Force | ForEach-Object { del $_.FullName -Recurse -Force }
view raw gistfile1.ps1 hosted with ❤ by GitHub

It just traverses all the subdirectories of the current directory and remove its enclosed .svn directories. As a result, the associated svn bindings get removed.