返回 Rhino 搜索路径列表中所有的搜索路径。获取更多信息请参考 Rhino 帮助文件中关于 “文件选项” 的部分。
rhinoscriptsyntax.SearchPathList()
rhinoscript.application.SearchPathList()
空值。
列表 |
Rhino 所有搜索路径字符串构成的列表。 |
import rhinoscriptsyntax as rs
count = rs.SearchPathCount()
if count>0:
paths = rs.SearchPathList()
for path in paths:print path