VB: Property Get Path As String
C++: LPCSTR Path
C#: string Path
Sub Folder_Path() Dim app As Origin.IOApplication Dim fds As Origin.Folders Dim fd As Origin.Folder app = New Origin.ApplicationSI fds = app.RootFolder.Folders fd = fds.Item(0) 'get the first sub folder MsgBox(fd.Path.ToString()) End Sub
8.0SR2