Community

Moving documents without recognized barcode to diferent folder

Hi,
Is possible to automatically move document without recognized barcode to different folder ?
Or can somebody help me write script for IT.
Now I am using barcode value as filename (Unique ID of Document) and want to have files without correct barcode/name in diferent folder for manual correction.

Thank you

Best regards
Jan Halamicek

Was this article helpful?

0 out of 0 found this helpful

Comments

2 comments

  • Avatar
    Sushi


    Kecimalah,

    I think I need more information on what you're trying to do. So is your current workflow, you drop images in an input folder, then Recognition Server spits out a file with Barcode as the filename? Is the barcode used a document separator too?

    Now if it doesn't read the Barcode at all, you want it to go to a different folder or do you want to force a Verification in the Verification station?
    0
  • Avatar
    kecimalah
    Hi,
    Thank you for support, but already solved it.
    Using separation Jscript and using naming: customtext\barcodetext.ext

    if (/^\d{8}$/.test(BarcodeText)) {
    CustomText="Proceed";
    }
    else {
    CustomText = "Unrecognized";
    }


    Than tryed also verification with indexing station, maybe more convinient for usage, will see what way will be using.
    Created Index ID.
    Using separation Jscript and using naming: ID.ext

    if (/^\d{8}$/.test(BarcodeText)) {
    Attributes.Item(0).Value=BarcodeText;
    SkipManualIndexing = true;
    }
    else {
    SkipManualIndexing = false;
    }

    0

Please sign in to leave a comment.