Help > Web Development > Object Reference > Object Reference > ISYSCatalog > Path Property
<a name="kanchor255"></a>ISYSCatalog:Path Property
Returns the path of the catalog item at the specified index. Read-Only.

Syntax
[VBScript]
ReadOnly property ISYSCatalog.Path(long Index) as string
[C#]
string IISYSCatalog.get_Path(
  long Index);
[ColdFusion/Java]
java.lang.String ISYSCatalog.Path(
  long Index
) throws ComException;
Parameters
IndexThe index of the item whose path is requested

Examples
[VBScript]
<% set catalog = Application("ISYS").OpenCatalog for i = 1 to catalog.Length Response.Write "<OPTION name=""" & catalog.Path(i) & """>" & _ catalog.Name(i) & "</OPTION>" next %>