Modules/FileSystem/createFileIterative

From Multi Theft Auto: Wiki
Revision as of 15:38, 20 January 2022 by Quiret (talk | contribs)
Jump to navigation Jump to search

This function attempts to create a file with numeric iteration for filename collision avoidance. If a specific filename is taken then the algorithm will try to create the next file with increased numeric insert.

Syntax

file fsnamespace.createFileIterative( translator target, string prefix, string suffix, int maxIterations )

Arguments

  • target: the file translator based on which to create the file
  • prefix: part of file path before the numeric insert
  • suffix: part of file path after the numeric insert (for example the file extention)
  • maxIterations: integral number of tries for the existing filename collisions

Returns

This function returns a newly created file handle distinct from any other colliding one if successful, false otherwise.

Example

-- TODO

FileSystem Namespace Functions

FileSystem File Functions

FileSystem Translator Functions