TriageFile Table

From truxwiki.com
Jump to navigation Jump to search

These are the names and regular expressions of files and folders that will be loaded in a Triage Load. This table is used to gather files of interest during a triage load.

SQL

CREATE TABLE "TriageFile" (
    "Name" text DEFAULT ''::text NOT NULL,
    "Description" text DEFAULT ''::text NOT NULL,
    "Why" text DEFAULT ''::text NOT NULL,
    "Type" integer DEFAULT 0 NOT NULL
);

Columns

Name

This column contains the name or regular expression of the file or folder to find.

Description

This is a human readable description of the Name. It should let the user know the application that created the file.

Why

This is a note to inform the user why this file is important enough to be processed.

Type

This tells Truxton how to use the contents of the Name column.

Value Meaning
1 The Name is the name of a file
2 The Name is the name of a folder
5 The Name is regular expression pattern for a file
6 The Name is regular expression pattern for a folder

Note. The regular expressions in Truxton will ignore case.