Modules/FileSystem/pathToFilename: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
No edit summary |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
<pageclass class="#e36242" subcaption="Namespace function"></pageclass> | |||
__NOTOC__ | __NOTOC__ | ||
This function returns the filename and the directory portions of a filepath, separated into two strings. | This function returns the filename and the directory portions of a filepath, separated into two strings. | ||
Line 19: | Line 20: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{:Modules/FileSystem/namespace/functions}} | {{:Modules/FileSystem/namespace/functions}} | ||
Latest revision as of 04:00, 23 January 2022
This function returns the filename and the directory portions of a filepath, separated into two strings.
Syntax
string, string fsnamespace.pathToFilename( string path, bool includeExtention )
Arguments
- path: the file path to extract from
- includeExtention: if true then the filename extention is included in the result
Returns
This function returns the filename and directory of the provided file path.
Example
-- TODO