Skip to content

Instantly share code, notes, and snippets.

@a5ync
Last active July 6, 2017 00:16
Show Gist options
  • Select an option

  • Save a5ync/a2cedc06800fe4a02b52131d93430381 to your computer and use it in GitHub Desktop.

Select an option

Save a5ync/a2cedc06800fe4a02b52131d93430381 to your computer and use it in GitHub Desktop.
Builds a file manifest of the given directory container
$path = $args[0]
$manifest = $args[1]
(Get-ChildItem -rec $path |where {!$_.PsIsContainer}| %{$_.FullName}) -replace [regex]::Escape($path), "" | Out-File $manifest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment