PathIsFile

From Multi Theft Auto: Wiki
Revision as of 11:32, 26 May 2024 by Tracer (talk | contribs) (Created page with "__NOTOC__ {{Shared function}} {{Added feature/item|1.6.1|1.6.0|22470|Checks if a specified path points to a file.}} ==Syntax== <syntaxhighlight lang="lua"> table pathIsFile ( string path ) </syntaxhighlight> {{OOP||path:isFile}} ===Required Arguments=== *'''path:''' A string containing a path you want to check against ===Returns=== Returns '''true''' if the path points to a file, '''false''' otherwise. ==Example== <section name="Share...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

BETA: NEW FEATURE (BUILD: 1.6.0 r22470)
Checks if a specified path points to a file.

Syntax

table pathIsFile ( string path )

OOP Syntax Help! I don't understand this!

Method: path:isFile(...)


Required Arguments

  • path: A string containing a path you want to check against

Returns

Returns true if the path points to a file, false otherwise.

Example

Click to collapse [-]
Shared

This example lists all files in a directory

local files = {}

for _,entry in ipairs(pathListDir('.')) do
    if pathIsFile(entry) then
        table.insert(files, entry)
    end
end

iprint('Files:')
for _,file in ipairs(files) do
    iprint(' - '..file)
end

See Also