ShellBrowser Delphi Edition Documentation
ContentsIndexHome
PreviousUpNext
TShellBrowser.Folder Property

Folder contains the path to the current object.

Syntax
Pascal
property Folder: UnicodeString;

Use Folder to specify the path of the folder, which should be browsed or to get the path currently which is currently active.

These lines fill a TListBox with the filenames in your Windows directory:

ShellBrowser.Folder := 'C:Windows'; While ShellBrowser.Next do ListBox.Items.Add(ShellBrowser.ObjectName);
Copyright (c) 2011. All rights reserved.