mirror of
https://github.com/BeamMP/Docs.git
synced 2025-08-17 08:55:52 +00:00
fix: FS.CreateDirectory return values
This commit is contained in:
parent
a4e9479613
commit
117ab90e16
@ -720,13 +720,13 @@ Please always use `/` as a separator when specifying paths, as this is cross-pla
|
|||||||
|
|
||||||
Creates the specified directory, and any parent directories if they don't exist. Behavior is roughly equivalent to the common linux command `mkdir -p`.
|
Creates the specified directory, and any parent directories if they don't exist. Behavior is roughly equivalent to the common linux command `mkdir -p`.
|
||||||
|
|
||||||
Returns whether the operation had an error, and, if it *did*, an error message. This means that, if `true` is returned, an error occurred.
|
If successful, returns `true` and `""`. If creating the directory failed, `false` and an error message (`string`) is returned.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
```lua
|
```lua
|
||||||
local error, error_message = FS.CreateDirectory("data/mystuff/somefolder")
|
local success, error_message = FS.CreateDirectory("data/mystuff/somefolder")
|
||||||
|
|
||||||
if error then
|
if not success then
|
||||||
print("failed to create directory: " .. error_message)
|
print("failed to create directory: " .. error_message)
|
||||||
else
|
else
|
||||||
-- do something with the directory
|
-- do something with the directory
|
||||||
|
Loading…
x
Reference in New Issue
Block a user