Path = scriptPath()..'bla/'
function exists(file)
local ok, err, code = os.rename(file, file)
if not ok then
if code == 13 then
return true
end
end
return ok, err
end
if exists(Path) then print('Already exists')
else
os.execute('mkdir '..Path)
print('Created')
end