DirectoryInfo.EnumerateFiles Method (String)

Microsoft Silverlight will reach end of support after October 2021. Learn more.

When it is called by trusted applications, returns an enumerable collection of file information that matches a search pattern.

Namespace:  System.IO
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public Function EnumerateFiles ( _
    searchPattern As String _
) As IEnumerable(Of FileInfo)
public IEnumerable<FileInfo> EnumerateFiles(
    string searchPattern
)

Parameters

  • searchPattern
    Type: System.String
    The search string. The default pattern is "*", which returns all files.

Return Value

Type: System.Collections.Generic.IEnumerable<FileInfo>
An enumerable collection of files that matches searchPattern.

Exceptions

Exception Condition
ArgumentNullException

searchPattern is nulla null reference (Nothing in Visual Basic).

DirectoryNotFoundException

The path encapsulated in the FileInfo object is invalid, (for example, it is on an unmapped drive).

SecurityException

The caller does not have the required permission.

Remarks

The following wildcard specifiers are permitted in the searchPattern parameter.

Wildcard character

Description

*

Zero or more characters.

?

Exactly one character.

Version Information

Silverlight

Supported in: 5, 4

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.