File System
Posted: Sat Nov 07, 2009 6:01 pm
How do I check if a folder exists?
Questions and answers about the LiveCode platform.
https://www.forums.livecode.com/
Code: Select all
on mouseUp
answer folder "Please choose a folder:"
put it into tFolder
if there is a folder tFolder and tFolder <>"" then
answer "exists"
else
answer "does not exist"
end if
end mouseUp