Announcement

Collapse
No announcement yet.

CRC?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • CRC?

    I am extremely new to scripting for BC. I'm trying to find out where the CRC number is written when you perform a CRC comparison. I managed to piece together a script that executes without error but I sure it's not what I need. Any help would be appreciated.

    I have the following script:

    criteria crc

    file-report layout:side-by-side options:display-mismatches

    output-to:c:\Neil\report.txt c:\Neil\Test1\delete1.txt

    c:\Neil\Test2\delete1.txt

  • #2
    Re: CRC?

    The file-report command compares and displays the text contents of files. It won't display the CRC values of files.

    To compare CRC values and output the values to a file, use the folder-report command.

    Here's an example:

    criteria crc
    load c:\test1 c:\test2
    expand all
    folder-report layout:side-by-side options:display-mismatches,column-crc output-to:c:\report.txt
    Chris K Scooter Software

    Comment


    • #3
      Re: CRC?

      Thanks!!! It worked great.

      Comment

      Working...
      X