love.filesystem.mountFullPath
Available since LÖVE 12.0 |
This function is not supported in earlier versions. |
Mounts a full platform-dependent path to a zip file or folder for reading or writing in love.filesystem.
Function
Synopsis
success = love.filesystem.mountFullPath( archive, mountpoint, permission, appendToPath )
Arguments
string archive
- The full platform-dependent path to a folder or zip file to mount.
string mountpoint
- The new path in love.filesystem the archive or the platform-dependent path will be mounted to.
MountPermissions permission ("read")
- The requested permissions for operating on files and folders in this path after mounting ("read", or "readwrite").
boolean appendToPath (false)
- Whether the archive will be searched when reading a filepath before or after already-mounted archives. This includes the game's source and save directories.
Returns
boolean success
- True if the archive was successfully mounted with the given path and permissions, false otherwise.
Notes
Most operating systems allow apps to read from more locations than they're allowed to write to. Therefore, this API will succeed in more situations when the "read" mount permission is used compared to "readwrite".
See Also
- love.filesystem
- love.filesystem.unmountFullPath
- love.filesystem.mount
- love.filesystem.mountCommonPath
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info