Difference between revisions of "love.filesystem.mount"

m (Updated optional third argument)
m (0.11.0 -> 11.0)
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
{{newin|[[0.9.0]]|090|type=function}}
 
{{newin|[[0.9.0]]|090|type=function}}
 
Mounts a zip file or folder in the game's save directory for reading.
 
Mounts a zip file or folder in the game's save directory for reading.
 +
It is also possible to mount [[love.filesystem.getSourceBaseDirectory]] if the game is in fused mode.
 +
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
success = love.filesystem.mount( archive, mountpoint )
+
success = love.filesystem.mount( archive, mountpoint, appendToPath )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
 
{{param|string|archive|The folder or zip file in the game's save directory to mount.}}
 
{{param|string|archive|The folder or zip file in the game's save directory to mount.}}
 
{{param|string|mountpoint|The new path the archive will be mounted to.}}
 
{{param|string|mountpoint|The new path the archive will be mounted to.}}
 +
{{param|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 ===
 
=== Returns ===
 
{{param|boolean|success|True if the archive was successfully mounted, false otherwise.}}
 
{{param|boolean|success|True if the archive was successfully mounted, false otherwise.}}
  
 
== Function ==
 
== Function ==
 +
{{newin|[[11.0]]|110|type=variant}}
 +
Mounts the contents of the given FileData in memory. The FileData's data must contain a zipped directory structure.
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
success = love.filesystem.mount( archive, mountpoint, appendToPath )
+
success = love.filesystem.mount( filedata, mountpoint, appendToPath )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
{{param|string|archive|The folder or zip file in the game's save directory to mount.}}
+
{{param|FileData|filedata|The FileData object in memory to mount.}}
 
{{param|string|mountpoint|The new path the archive will be mounted to.}}
 
{{param|string|mountpoint|The new path the archive will be mounted to.}}
 
{{param|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.}}
 
{{param|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 ===
 +
{{param|boolean|success|True if the archive was successfully mounted, false otherwise.}}
  
 +
== Function ==
 +
{{newin|[[11.0]]|110|type=variant}}
 +
Mounts the contents of the given Data object in memory. The data must contain a zipped directory structure.
 +
=== Synopsis ===
 +
<source lang="lua">
 +
success = love.filesystem.mount( data, archivename, mountpoint, appendToPath )
 +
</source>
 +
=== Arguments ===
 +
{{param|Data|data|The Data object in memory to mount.}}
 +
{{param|string|archivename|The name to associate the mounted data with, for use with [[love.filesystem.unmount]]. Must be unique compared to other mounted data.}}
 +
{{param|string|mountpoint|The new path the archive will be mounted to.}}
 +
{{param|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 ===
 
=== Returns ===
 
{{param|boolean|success|True if the archive was successfully mounted, false otherwise.}}
 
{{param|boolean|success|True if the archive was successfully mounted, false otherwise.}}
Line 36: Line 55:
 
* [[parent::love.filesystem]]
 
* [[parent::love.filesystem]]
 
* [[love.filesystem.unmount]]
 
* [[love.filesystem.unmount]]
 +
* [[love.filesystem.getSourceBaseDirectory]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Mounts a zip file or folder in the game's save directory for reading.}}
 
{{#set:Description=Mounts a zip file or folder in the game's save directory for reading.}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.filesystem.mount}}
 
{{i18n|love.filesystem.mount}}

Revision as of 14:14, 22 December 2018

Available since LÖVE 0.9.0
This function is not supported in earlier versions.

Mounts a zip file or folder in the game's save directory for reading. It is also possible to mount love.filesystem.getSourceBaseDirectory if the game is in fused mode.

Function

Synopsis

success = love.filesystem.mount( archive, mountpoint, appendToPath )

Arguments

string archive
The folder or zip file in the game's save directory to mount.
string mountpoint
The new path the archive will be mounted to.
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, false otherwise.

Function

Available since LÖVE 11.0
This variant is not supported in earlier versions.

Mounts the contents of the given FileData in memory. The FileData's data must contain a zipped directory structure.

Synopsis

success = love.filesystem.mount( filedata, mountpoint, appendToPath )

Arguments

FileData filedata
The FileData object in memory to mount.
string mountpoint
The new path the archive will be mounted to.
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, false otherwise.

Function

Available since LÖVE 11.0
This variant is not supported in earlier versions.

Mounts the contents of the given Data object in memory. The data must contain a zipped directory structure.

Synopsis

success = love.filesystem.mount( data, archivename, mountpoint, appendToPath )

Arguments

Data data
The Data object in memory to mount.
string archivename
The name to associate the mounted data with, for use with love.filesystem.unmount. Must be unique compared to other mounted data.
string mountpoint
The new path the archive will be mounted to.
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, false otherwise.

Examples

Mount a zip file.

-- Assuming content.zip exists in the game's save directory and contains a file called 'myimage.png'.
love.filesystem.mount("content.zip", "content")

assert(love.filesystem.exists("content/myimage.png"))

See Also

Other Languages