Checks if the folder should be shown in the admin panels depending on its prefix (App_Themes, App_Code, bin, etc)

Namespace: MonoSoftware.MonoX.Utilities
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public static bool CheckFolderVisibility(
	string folderName,
	string[] hiddenFolders
)
Visual Basic
Public Shared Function CheckFolderVisibility ( 
	folderName As String,
	hiddenFolders As String()
) As Boolean
Visual C++
public:
static bool CheckFolderVisibility(
	String^ folderName, 
	array<String^>^ hiddenFolders
)
F#
static member CheckFolderVisibility : 
        folderName : string * 
        hiddenFolders : string[] -> bool 

Parameters

folderName
Type: System..::..String
Folder to check
hiddenFolders
Type: array<System..::..String>[]()[][]
Array of folders that should be hidden

Return Value

Type: Boolean
True if visible

See Also