Returns all of the path items in Rhino's search path list. See "Options Files settings" in the Rhino help file for more details.
rhinoscriptsyntax.SearchPathList()
rhinoscript.application.SearchPathList()
None.
list |
An array of strings containing all of the path items in Rhino's search path list. |
import rhinoscriptsyntax as rs
count = rs.SearchPathCount()
if count>0:
paths = rs.SearchPathList()
for path in paths: print path