Folder DAT
Summary[edit]
The Folder DAT lists the files and subfolders found in a file system folder and monitors any changes.
For each item found, a row is created in the table with optional columns for the following information:
- Name
- Base Name
- Extension
- Type
- Size
- Depth
- Folder
- Path
- Relative Path
- Date Created
- Date Modified
- Date Accessed
Contents
Parameters - Folder Page
Active active
- When off, the DAT outputs a single-row table with only the headings, useful when dormant or when sending the DAT to a Replicator COMP.
Root Folder rootfolder
- The folder in the filesystem whose contents will be displayed in the DAT list.
Refresh refresh
- When on, it monitors the specified folder(s) of the filesystem. The pulse button reads it once.
Refresh Pulse refreshpulse
-
Asynchronous Update async
- When on, the update happens asynchronously from the main thread so it doesn't make TouchDesigner drop frames or pause. As a result, the Folder DAT way not update its data within the next frame after the change on disk.
Name Format nameformat
- ⊞ - Select whether to include the filename extension or not.
- Include Extension
extension
-
- No Extension
noextension
-
Date Format dateformat
- ⊞ - The format used to display the item's dates in the table.
- Standard
std
- A standard date format.
- Epoch
epoch
- A reference date format.
Type type
- ⊞ - The types of contents to display.
- Files
files
- Include files.
- Folders
folders
- Include folders.
- Files and Folders
filesandfolders
- Include both files and folders.
Folders folders
- Use Pattern Matching to specify which folders are included. Matches the folder path. Delimiters used are spaces and commas. To match spaces, enclose the entire search term in double quotes.
Names names
- Use Pattern Matching to specify which names are included. Delimiters used are spaces and commas. To match spaces, enclose the entire search term in double quotes.
All Extensions allextensions
- Includes all file extensions.
Image Extensions imageextensions
- Includes image contents that are supported by TouchDesigner. See supported File Types.
Movie Extensions movieextensions
- Includes movie contents that are supported by TouchDesigner. See supported File Types.
Audio Extensions audioextensions
- Includes audio contents that are supported by TouchDesigner. See supported File Types.
Extensions extensions
- Use Pattern Matching to specify which extensions are included. Extensions listed here should not include the period. E.g *txt, not *.txt.
Include Subfolders subfolders
- Includes the subfolders from the root folder specified.
Minumum Depth mindepth
- Set a minmum depth for the subfolders the Folder DAT should recursively search through.
Limit Depth limitdepth
- Turns on the Maximum Depth parameter to limit searching through subfolders. Turning this toggle off will search through all subtrees.
Maximum Depth maxdepth
- Set the maximum depth for the subfolders the Folder DAT should recursively search through.
Parameters - Columns Page
Name namecol
-
Base Name basenamecol
-
Extension extensioncol
-
Type typecol
-
Size sizecol
-
Depth depthcol
-
Folder foldercol
-
Path pathcol
-
Relative Path relpathcol
-
Date Created datecreatedcol
-
Date Modified datemodifiedcol
-
Date Accessed dateaccessedcol
-
Parameters - Common Page
Language language
- ⊞ - Select how the DAT decides which script language to operate on.
- Input
input
- The DAT uses the inputs script language.
- Node
node
- The DAT uses it's own script language.
Edit/View Extension extension
- ⊞ - Select the file extension this DAT should expose to external editors.
- dat
dat
- various common file extensions.
- From Language
language
- pick extension from DATs script language.
- Custom Extension
custom
- Specify a custom extension.
Custom Extension customext
- Specifiy the custom extension.
Word Wrap wordwrap
- ⊞ - Enable Word Wrap for Node Display.
- Input
input
- The DAT uses the inputs setting.
- On
on
- Turn on Word Wrap.
- Off
off
- Turn off Word Wrap.
TouchDesigner Build:
DATs |
---|
• • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • • |
The operating system's holder of files and other folders (directories). It does not refer to operators within TouchDesigner. See Network Path.
An Operator Family that manipulates text strings: multi-line text or tables. Multi-line text is often a command Script, but can be any multi-line text. Tables are rows and columns of cells, each containing a text string.
TouchDesigner is a hierarchy of components. "root" is the top-most network in the hierarchy. The Path is simply /
. A typical path is /project1/moviein1
.
To pulse a parameter is to send it a signal from a CHOP or python or a mouse click that causes a new action to occur immediately. A pulse via python is via the .pulse()
function on a pulse-type parameter, such as Reset in a Speed CHOP. A pulse from a CHOP is typically a 0 to 1 to 0 signal in a channel.
Any component can be extended with its own Python classes which contain python functions and data.