love.filesystem.mount (한국어)

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

zip 파일을 마운트합니다.

함수

형식

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

매개변수

string (한국어) archive
세이브 디렉토리 내의 마운트할 zip 파일.
string (한국어) mountpoint
마운트될 지점.

리턴값

boolean (한국어) success
성공하면 true.

함수

형식

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

매개변수

string (한국어) archive
세이브 디렉토리 내의 마운트할 zip 파일.
string (한국어) mountpoint
마운트될 지점.
boolean (한국어) appendToPath (false)
이미 마운트된 저장소의 앞이나 뒤에 파일 경로를 읽을 때 아카이브가 검색되어야 하면 true. .love 압축 파일도 포함.

리턴값

boolean (한국어) success
성공하면 true.

예제

zip 파일 마운트

-- 세이브 디렉토리 내에 content.zip가 존재하고 'myimage.png'란 파일을 포함한다고 가정.
love.filesystem.mount("content.zip", "content")

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

같이 보기

다른 언어