First, thanks for trying to answer my question.
Ok, so I have loads of files (somewhere in the excess of about 500) from which I need to grab some of their properties. I need the File Name, Date Created, and Author and I'd like them to be saved into an Excel sheet.
Any idea on how I'd go about doing this? I've got a little bit of C# and VB.Net programming skills but not a lot. Anything you can do to help will be greatly appreciated!
Thanks.
Directory.GetFiles
)FileInfo
object for each file, and then check properties
you are looking for.Excel interop
) to create an Excel and insert your information of each file into a row.