2010/01/23 | [原创]两种用Lingo判断Xtras文件夹指定xtra是否存在的方法
类别(开发文献) | 评论(0) | 阅读(72) | 发表于 12:47

-- 方法一:

-- 检测指定 名称 的Xtra 是否存在

-- 使用范例:put CheckXtra("budapi")

-- 1

on CheckXtra _xtraName 

  x = the number of xtras 

  repeat with i=1 to x

    if the name of xtra i = _xtraName then

      return true

    end if

  end repeat 

  return false

end

 

-- 方法二:

-- 检测指定 文件名称 的Xtra 是否存在

-- 使用范例:put CheckXtraFileName("budapi.x32")

-- 1

on CheckXtraFileName _xtraFileName 

  xtrasList = the xtralist

  x = xtrasList.count

  repeat with i=1 to x   

    if xtrasList[i].fileName = _xtraFileName then

      return true

    end if

  end repeat 

  return false

end

 

--注意:

-- Xtra的 名称,默认为开发商开发时定义的名称,我们一般是无法修改的。

-- Xtra的 文件名称,为硬盘上的文件名称,我们可以任意修改。

 

 

2

评论Comments