Skip to content

Instantly share code, notes, and snippets.

@noedigsti
Created November 13, 2023 06:08
Show Gist options
  • Save noedigsti/016e83f8d05cfd443addf66c05792582 to your computer and use it in GitHub Desktop.
Save noedigsti/016e83f8d05cfd443addf66c05792582 to your computer and use it in GitHub Desktop.

Folder Tree Visualization

Windows

PowerShell
Get-ChildItem -Path "C:\Your\Directory\Path" -Recurse | Where-Object { $_.FullName -notlike '*\node_modules\*' }
CommandLine
tree /F /A

Linux

sudo apt install tree
tree
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment