FileFind(filename)
FileFind()
Parameters
filename : 파일 존재유무를 확인하고자하는 파일명을 입력합니다.
Return Value
파일 존재유무를 제공합니다.
Remarks
-- lua
local bExist = false
bExitst = FileFind("picture\\sample.svg")
if (bExist) then
PrintMessage("File Existed")
else
PrintMessage("File Not Existed")
end
// javascript
// not support
####
Examples
-- lua
function _onmousedown()
local bExist = false
bExitst = FileFind("picture\\sample.svg")
if (bExist) then
PrintMessage("File Existed")
else
PrintMessage("File Not Existed")
end
end
// JavaScript
function _onmousedown()
{
// not support
}