When running this powershell command
Get-ChildItem -Recurse -Include *.txt
You get multiple tables in the output, One Table per directory.
What method can I use to combine multiple tables into one table?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You will need to select the properties you want. Otherwise, you get a separate listing for each sub folder. You could try something like this:
PS C:>dir c:\scripts -recurse -include *.txt | Select Mode,LastWriteTime,Length,FullName | format-table -auto