Quote:
Originally Posted by JSWolf
Sorry, there is no way to check for DRM on PDF in batches. You have to do it one by one.
|
Of course there is a way.
In a bash terminal in linux with pdftk installed:
Code:
for file in *.pdf
do pdftk $file dump_data > /dev/null 2>> encrypted_list.txt
done
The file encrypted_list.txt will contain a list of encrypted files (and any other errors that turn up).