Options¶
log-level=50
Base Options¶
config¶
Path to a config file.
delay¶
Adds a delay (seconds) between getting notified of a new file and processing of the file.
If the delay is 0 the Processor will check 6 times if the file exists and can be opened.
Between each try there is a 1 second delay.
That gives the scanner up to six seconds to copy the file to the folder.
| Default: | 0 |
|---|
file-format¶
This is how efos should name each parsed file. It uses pythons old % formatting with the barcode data.
filename = self.options.filename_format % self.barcode.data
Note
This is probably going to change in a later release to the new formatting style.
| Default: | %(filename)s |
|---|
DropboxHandler Options¶
FileHandler Options¶
output-path¶
Path to save processed files.
If this path is a relative path (./out/dir or out/dir) it will be appended to the watch path.
| Default: | output |
|---|
archive-path¶
Path to save original files after processing.
If this path is a relative path (./archive/dir or archive/dir) it will be appended to the watch path.
| Default: | archive |
|---|
disable-output¶
Will disable the output of processed files, but will still archive originals.
| Default: | False |
|---|