# `recover-pdfs` recovers all PDFs from any kind of disk or filesystem. - Did you accidentally delete one or all of your PDF documents? - Do you need an important PDF bank statement from an old computer, but the 2008 hard-drive doesn't boot? I built `recover-pdf` as a filesystem-agnostic tool for recovering PDF documents. It literally looks over every bit of information on your disk and anything that looks like a PDF gets put into a recovery directory. Usage: `recover-pdfs /dev/null ``` By default, only PDFs up to 100MB are recovered. If you have a lot of large PDFs, you can increase this limit at the top of the `recover-pdfs.c` source file, and then recompile. Specifically, change this line: ```{c} #define MAX_PDF_SIZE (100LL * 1024 * 1024) ```