0

I was wondering if anyone had any ideas of how to extract Metadata from files in C#, I am wanting to create an application where the user has upload a file e.g a PDF or JPEG file and it will extract all the Metadata from the file and output it? Some of the metadata will include:

  • Author
  • Date Created
  • Date Modified
  • File Size
John
  • 11
  • 2
  • https://stackoverflow.com/questions/37869388/how-to-read-extended-file-properties-file-metadata I think you will find your answer here. – georgyfelix Dec 11 '19 at 09:43
  • Does this answer your question? [How to read extended file properties / file metadata](https://stackoverflow.com/questions/37869388/how-to-read-extended-file-properties-file-metadata) – Stuart Frankish Dec 11 '19 at 09:44

1 Answers1

3

There is a library called TagLib-Sharp for reading and writing metadata in files It works for Video/Audio/Image files but it does not support PDF files.

NickP
  • 41
  • 4