adTempus API
ArcanaDevelopment.adTempus.Client Namespace / Scheduler Class / FileBrowse Method
The directory from which to browse. For example, "c:\" or "c:\some directory\subdirectory". Specify an empty string ("") to return a list of all available drives on the server.
Options determining what information is returned.
The maximum number of directory levels to return.
Specify a filter for selecting files to list. Multiple filters can be separated with commas. For example, "*.exe,*.bat,*.cmd". Specify "*.*" or an empty string to return all files/directories.


In This Topic
    FileBrowse Method
    In This Topic
    Returns file or directory listing information from the server.
    Syntax
    'Declaration
     
    
    <NotNullAttribute()>
    Public Function FileBrowse( _
       ByVal root As String, _
       ByVal options As FileBrowseOptions, _
       ByVal maximumDepth As Integer, _
       ByVal fileFilters As String _
    ) As ReadOnlyCollection(Of DirectoryInfo)

    Parameters

    root
    The directory from which to browse. For example, "c:\" or "c:\some directory\subdirectory". Specify an empty string ("") to return a list of all available drives on the server.
    options
    Options determining what information is returned.
    maximumDepth
    The maximum number of directory levels to return.
    fileFilters
    Specify a filter for selecting files to list. Multiple filters can be separated with commas. For example, "*.exe,*.bat,*.cmd". Specify "*.*" or an empty string to return all files/directories.
    See Also