We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
-D or --dir is used if we want to encrypt or decrypt all the files present in a perticular directory
-D
--dir
python3 secure.py -e -D Documents/
-x or --extensions is used if we want to encrypt or decrypt files with specific file extension.
-x
--extensions
python3 secure.py -e -D Documents/Coding/ -x txt,py
-o or --output is used to specify a custom directory where we want to save our encrypted or decrypted files.
-o
--output
python3 secure.py -e -D Documents/Coding/ -x txt,py -o /tmp
-r or --remove is used to remove the files after they are either encrypted or decrptred
-r
--remove