Split File Path String
Windows only
Demonstrates how to break a file path string in to its components using RhinoScript.
Sub SplitPath(ByVal sPath, ByRef sDrive, ByRef sDir, ByRef sFname, ByRef sExt)
Dim fso
Set fso = CreateObject("Scripting.FileSystemObject")
sDrive = fso.GetDriveName(sPath)
sDir = Mid(fso.GetParentFolderName(sPath), Len(sDrive)+1) & "\"
sFname = fso.GetBaseName(sPath)
sExt = "." & fso.GetExtensionName(sPath)
Set fso = Nothing
End Sub