I need to get the information of pdf file.
There is my code:
PdfReader reader = new PdfReader(fileName);
var info = reader.Info;
I don't need to read the whole file: if there are a lot of pdf files, this operation may take a lot of time..
How can I get info without reading whole file?