TapeTrack Documentation

Because there is more to tape management than you ever realized

User Tools

Site Tools


technote:rename_volumes

This is an old revision of the document!


Renaming A Batch Of Volume-ID's

Renaming a batch of Volumes can be completed in one process using a configuration file, definition file, Volume List and TMSS10VolumeRename.

When TMSS10VolumeRename is executed, the configuration file will use the definition file to load the Volumes into a scan list.

Volumes from the target Customer are then compared to the Scan list and either processed (if in the Scan list) or discarded (if not in the Scan list)

The Volumes processed are then renamed according to the logic in the Command Line code.

Example Files

Adding L5 suffix to all Volumes in the input file volumes.txt for Customer US04, Media LTO.

Volume Input File

volumes.txt

100001
100002
100003
100004
100005
100006
100007
100008
100009
100010

Definition File

rename.ttidef

# Set volume input file 
SetFile("volumes.txt");

# Set Customer and Media values
SetLiteral(CUSTOMER, US44);
SetLiteral(MEDIA, LTO);

# Extract barcode
Extract(BARCODE, 0, 6, 0);

Configuration File

rename.cfg

traversal =
{
   scanfile= { file="rename.ttidef"; };
   customer =
   (
      {
         id="*";
         media =
         (
            {
               id="*";
               volume =
               (
                   {
                      id="*";
                      scanfile=true;
                      skip=false;
                   },
                   {
                      id="*";
                      skip=true;
                   }
               );
            }
         );
      }
   );
};
technote/rename_volumes.1628126337.txt.gz · Last modified: 2025/01/21 22:07 (external edit)