GetFolderItem
GetFolderItem method
| Method Prototype | Description
|
| GetFolderItem( path As String ) As FolderItem | create a new FolderItem with the given path
|
GetFolderItem is a global factory function that creates
FolderItem objects. It's equivalent to "New FolderItem(path)".
The parameter to both GetFolderItem and the FolderItem Constructor is a URL-style path relative to the web server document root. That is, a number of directory/file names (or ".." to mean "up one directory") separated by forward slashes. So for example, "foo/bar.txt" refers to the file "bar.txt" inside the "foo" subdirectory of the document root. To refer to the document root itself, you would use the empty string ("") as the path.