About 2,170,000 results
Open links in new tab
  1. How to use "tree" command on powershell to show files as well as ...

    Aug 14, 2023 · I am trying to get full structure of my project in tree format in powershell. When I use the command tree, it only shows directories and subdirectories, but neither files nor …

  2. Windows 10 Powershell tree command, how to show files

    Nov 20, 2017 · How do I list folders and files using the PowerShell tree command? Is it possible to color format the output for distinct files and folders?

  3. windows - How to list directories a certain level deep using the …

    Dec 18, 2019 · Tree is not a PowerShell cmdlet, as we know, and as such cannot be used in the vein you are trying to do. For what you are after, you have to write this yourself or look for …

  4. Use PowerShell to generate a list of files and directories

    Dec 12, 2014 · Tree's output in the above example is a System.Array which we can manipulate. Select-Object -Skip 2 will remove the first 2 lines containing that data. Also, If Keith Hill was …

  5. sorting - PowerShell - Listing all Folders, Subfolders and each ...

    Oct 7, 2020 · PowerShell - Listing all Folders, Subfolders and each contained files (recursive) but in a formatted way (Tree-View) Asked 5 years, 2 months ago Modified 4 years, 5 months ago …

  6. tree /f cmd with date modified. Windows powershell

    May 22, 2018 · I need to create a "tree list" of a drive its folders, subfolders, and the date modified. tree /f command works great but I need to add the date modified. How can I do that?

  7. powershell - Printing tree of windows directory where the script ...

    Nov 16, 2023 · Printing tree of windows directory where the script located and exclude some folders based on .gitignore file Asked 2 years ago Modified 2 years ago Viewed 213 times

  8. directory - How can you use PowerShell to get a tree list of ...

    Oct 20, 2021 · How can you use PowerShell to get a tree list of directories and metadata [duplicate] Asked 4 years, 1 month ago Modified 4 years, 1 month ago Viewed 2k times

  9. powershell - Print directory tree but exclude a folder on windows …

    May 5, 2017 · 2 In Powershell, just use Where-Object and exclude the folder names you want (put a * wildcard on the front since it can be difficult to know how many spaces and special …

  10. files don't appear when using tree-view listing in the powershell

    Oct 4, 2019 · Along with the answers you've already gotten. Remember tree is not a PowerShell cmdlet, functions, code. It's normal Windows DOS/cmd.exe stuff. You of course can run …