Difference between revisions of "File Export Options"
Jump to navigation
Jump to search
(Created page with "These defined constants represent the options you can set for exporting files from Truxton. {| class="wikitable" ! Name ! Value ! Meaning |- | <...") |
|||
| Line 21: | Line 21: | ||
| style="text-align:center;" | 3 | | style="text-align:center;" | 3 | ||
| Export files to a [https://en.wikipedia.org/wiki/Tar_(computing) tar] file. | | Export files to a [https://en.wikipedia.org/wiki/Tar_(computing) tar] file. | ||
| + | |- | ||
| + | | <code>TRUXTON_EXPORT_FILE_OPTION_UNIQUE</code> | ||
| + | | style="text-align:center;" | 4 | ||
| + | | Export only unique file contents. | ||
| + | |- | ||
| + | | <code>TRUXTON_EXPORT_FILE_OPTION_META_DATA</code> | ||
| + | | style="text-align:center;" | 5 | ||
| + | | Include a <code>FileMeta.json</code> file in the output that provides file information. | ||
|} | |} | ||
Latest revision as of 20:01, 31 March 2021
These defined constants represent the options you can set for exporting files from Truxton.
| Name | Value | Meaning |
|---|---|---|
TRUXTON_EXPORT_FILE_OPTION_UNKNOWN
|
0 | We don't know what the option is. |
TRUXTON_EXPORT_FILE_OPTION_NAME_FORMAT
|
1 | Sets the pattern for naming output files. |
TRUXTON_EXPORT_FILE_OPTION_FOLDER
|
2 | Sets folder where the exported files should go. |
TRUXTON_EXPORT_FILE_OPTION_TAR
|
3 | Export files to a tar file. |
TRUXTON_EXPORT_FILE_OPTION_UNIQUE
|
4 | Export only unique file contents. |
TRUXTON_EXPORT_FILE_OPTION_META_DATA
|
5 | Include a FileMeta.json file in the output that provides file information.
|