Skip to main content

Match Types

Definition​

A large number of Library Blueprints have a Match Type field that allows you to select between Exact Match and Regex Match.

  • Exact Match - Matches to a single file, using a combination of the Folder Name and File Name.

  • Regex Match - Matches to multiple files, using regular expressions.

The Match Type selected affects the Source fields and the Destination fields differently. The names of these fields will differ based on the Blueprint you've selected and the functionality of that Blueprint.

  • Source - If you're downloading files, this will be the vendor/tool. If you're uploading files, this will be Shipyard's local file system.

  • Destination - If you're uploading files, this will be the vendor/tool. If you're downloading files, this will be Shipyard's local file system.

Exact Match​

Effects on Source​

When using Exact Match, the Blueprint will look for a file that exactly matches (case sensitive) the combination of the provided Source Folder Name and Source File Name. When the folder name and file name are combined, we correctly format the / characters, so you don't need to worry about the difference between providing a folder as folder/structure, /folder/structure or folder/structure/.

When the Source is Shipyard, leaving the Folder Name blank assumes that the file you want to match to lives in the home directory. When the Source is a vendor/tool, leaving the Folder Name blank assumes that the file you want to match to lives in the root directory.

Effects on Destination​

When using Exact Match, the Destination Folder Name and File name will be combined together and created exactly as you typed them.

If a Destination Folder Name is provided that doesn't already exist, it will be created.

If you leave Destination File Name empty, the original file name that you match to will be kept, stripped of the folder name.

Examples​

Assume that we are downloading files from a Vendor, and our vendor has the following file structure. Click through the tabs below to see how the inputs will change the resulting file matched to.

reports/
β”œβ”€ customer_data.csv
β”œβ”€ external/
β”‚ β”œβ”€ geo_data.csv
β”œβ”€ monthly/
β”‚ β”œβ”€ jan_data.csv
β”‚ β”œβ”€ feb_data.csv
β”‚ β”œβ”€ mar_data.csv
β”œβ”€ aggregated/
β”‚ β”œβ”€ data_yearly.csv
β”‚ β”œβ”€ data_quarterly.csv
β”‚ β”œβ”€ data_monthly.csv
company_data.csv

Inputs

Variable NameValue
Source File Name Match TypeExact Match
Source File Namejan_data.csv
Source Folder Namereports/monthly
Destination Folder Name<empty>
Destination File Name<empty>

Result

The Blueprint combines the folder and file name to interpret the source file as reports/monthly/jan_data.csv. One file is found that matches. Because the Destination File Name is empty, the original file name is kept in tact.

ElementNames
Matched Filesreports/monthly/jan_data.csv
Downloaded Filesjan_data.csv

Regex Match​

Effects on Source​

When using Regex Match, the Blueprint will first filter down to the folder provided under Source Folder Name. Next, it will then pull in every file that exists under your filter and its subfolders. Then, it will compare the names of these files to the regex provided under Source File Name. All matching file names are then looped through for downloading/uploading.

When the Source is Shipyard, leaving the Folder Name blank will cause Shipyard to search for all matches in the home directory and its subdirectories. When the Source is a vendor/tool, leaving the Folder Name blank will cause Shipyard to search for all the matches in the root directory and its subdirectories.

note

Technically, all files names are a combination of their folder name and file name. So a file named data.csv in a folder named reports is seen as reports/data.csv for the sake matching with regex. This can result in your regex matching to a file because of its folder name.

Effects on Destination​

If you provide a Destination File Name when Regex Match is used, and more than one file is matched to, we enumerate the files by adding _# to the end of the file name before the file extension. This prevents each file from being uploaded/downloaded with the same name, which would result in a single file being continuously overwritten.

For example, if you provided a Destination File Name of report.csv and your regex finds multiple matches, the files will be uploaded/downloaded as report_1.csv, report_2.csv, etc.

If you leave Destination File Name empty, the original file names that you match to will be kept, stripped of the folder name.

Examples​

Assume that we are downloading files from a Vendor, and our vendor has the following file structure. Click through the tabs below to see how the inputs will change the resulting files matched to.

reports/
β”œβ”€ customer_data.csv
β”œβ”€ external/
β”‚ β”œβ”€ geo_data.csv
β”œβ”€ monthly/
β”‚ β”œβ”€ jan_data.csv
β”‚ β”œβ”€ feb_data.csv
β”‚ β”œβ”€ mar_data.csv
β”œβ”€ aggregated/
β”‚ β”œβ”€ data_yearly.csv
β”‚ β”œβ”€ data_quarterly.csv
β”‚ β”œβ”€ data_monthly.csv
company_data.csv

Inputs

Variable NameValue
Source File Name Match TypeRegex Match
Source File Name_data\.csv
Source Folder Namereports/monthly
Destination File Name<empty>

Result

The Blueprint filters down to the folder of reports/monthly. In this folder, it finds 3 files that match the regex. The original file names are kept in tact.

ElementNames
Matched Filesreports/monthly/jan_data.csv
reports/monthly/feb_data.csv
reports/monthly/mar_data.csv
Downloaded Filesjan_data.csv
feb_data.csv
mar_data.csv

Learn More​