Difference between revisions of "TriageFile Table"
Jump to navigation
Jump to search
(Created page with "These are the names and regular expressions of files and folders that will be loaded in a Triage Load. <source lang="SQL"> CREATE TABLE "TriageFile" ( "Name" text DEFAULT...") |
|||
| Line 9: | Line 9: | ||
); | ); | ||
</source> | </source> | ||
| + | |||
| + | =Remarks= | ||
| + | This table is used to gather files of interest in a triage load. | ||
| + | |||
| + | =<code>Name</code>= | ||
| + | This column contains the name or [https://en.wikipedia.org/wiki/Regular_expression regular expression] of the file or folder to find. | ||
| + | |||
| + | =<code>Description</code>= | ||
| + | This is a human readable description of the <code>Name</code>. | ||
| + | It should let the user know the application that created the file. | ||
| + | |||
| + | =<code>Why</code>= | ||
| + | This is a note to inform the user why this file is important enough to be processed. | ||
| + | |||
| + | =<code>Type</code>= | ||
| + | This tells Truxton how to use the contents of the <code>Name</code> column. | ||
| + | |||
| + | {| class="wikitable" | ||
| + | ! Value | ||
| + | ! Meaning | ||
| + | |- | ||
| + | | style="text-align:center;" | 1 | ||
| + | | The <code>Name</code> is the name of a file | ||
| + | |- | ||
| + | | style="text-align:center;" | 2 | ||
| + | | The <code>Name</code> is the name of a folder | ||
| + | |- | ||
| + | | style="text-align:center;" | 5 | ||
| + | | The <code>Name</code> is regular expression pattern for a file | ||
| + | |- | ||
| + | | style="text-align:center;" | 6 | ||
| + | | The <code>Name</code> is regular expression pattern for a folder | ||
| + | |} | ||
| + | |||
| + | Note. The regular expressions in Truxton will ignore case. | ||
Revision as of 07:00, 8 June 2023
These are the names and regular expressions of files and folders that will be loaded in a Triage Load.
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
);
Contents
Remarks
This table is used to gather files of interest in a triage load.
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.