Folder.GetFolderFileNames Method

Get the list of file names in a folder (that the user can see)
Public Shared Function GetFolderFileNames( _ 
ByVal folder_id As EntityID, _ 
ByVal user_id As EntityID, _ 
ByVal pattern As String, _ 
ByVal start_char As Char, _ 
ByVal end_char As Char, _ 
ByVal db As IDatabase
) As List(Of String)
This language is not supported or no code example is available.
public static List<string> GetFolderFileNames( 
EntityID folder_id
EntityID user_id
string pattern
char start_char
char end_char
IDatabase db 
)
This language is not supported or no code example is available.
public:  
static List<String^>^ GetFolderFileNames( 
EntityID^ folder_id
EntityID^ user_id
String^ pattern
char start_char
char end_char
IDatabase^ db 
)
This language is not supported or no code example is available.
JScript does not support generic types and methods.
This language is not supported or no code example is available.

Parameters

folder_id
EntityID

the id of the folder

user_id
EntityID

the user - may be null if for any user without permissions

pattern
string

the pattern - may be null if no filtering required

start_char
char

the start of character range for the start char - may be char.MinValue if not used

end_char
char

the start of character range for the start char - may be char.MaxValue if not used

db
IDatabase

the database

Return Value

List<string>

the list of file names

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1

In this article

Definition