I’m using csv files for this example but it applies to other types of file as well. Let’s produce a csv file: Get-ChildItem -Path C:UsersRichardDocuments -File | select FullName, Length, LastWriteTime | Export-Csv files.csv This gives a small, useful… Read the full text.