MTA:Eir/FileSystem/translator/setPathProcessingMode: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ This function sets the path-processing-mode for the file translator. The path-processing-mode describes how paths are handled in detail during file-path consuming function calls. ==Syntax== <syntaxhighlight lang="lua"> void translator.setPathProcessingMode( string mode ) </syntaxhighlight> ==Arguments== *'''mode:''' value for the translator path-processing-mode (either '''distinguished''' or '''ambivalent_file''') ==Returns== This function returns nil. ==Ex...")
 
mNo edit summary
 
Line 4: Line 4:
==Syntax==
==Syntax==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
void translator.setPathProcessingMode( string mode )
void translator:setPathProcessingMode( string mode )
</syntaxhighlight>
</syntaxhighlight>



Latest revision as of 23:31, 16 January 2022

This function sets the path-processing-mode for the file translator. The path-processing-mode describes how paths are handled in detail during file-path consuming function calls.

Syntax

void translator:setPathProcessingMode( string mode )

Arguments

  • mode: value for the translator path-processing-mode (either distinguished or ambivalent_file)

Returns

This function returns nil.

Example

-- TODO

FileSystem Translator Functions