DeleteSearchPath

Removes an existing path from Rhino's search path list. Search path items can be removed manually by using Rhino's Options command and modifying the contents of the Files tab. See "Options Files settings" in the Rhino help file for more details.

Syntax

rhinoscriptsyntax.DeleteSearchPath( folder )

rhinoscript.application.DeleteSearchPath( folder )

Parameters

folder

Required.  String.  A valid folder, or path, to remove.

Returns

Boolean

True or False indicating success or failure.

Example

import rhinoscriptsyntax as rs

rs.DeleteSearchPath("C:\\My RhinoScripts")

Also See

AddSearchPath

SearchPathCount

SearchPathList