BaseFile Constructor (ManagerEngine, String, String, FileType)

MCManager API

Initializes a file instance by a absolute path, child name and type. This can be userful when filtering non existing files.

Namespace:  Moxiecode.Manager.FileSystems
Assembly:  MCManager (in MCManager.dll) Version: 1.0.0.0

Syntax

C#
public BaseFile(
	ManagerEngine man,
	string absolute_path,
	string child_name,
	FileType type
)
Visual Basic (Declaration)
Public Sub New ( _
	man As ManagerEngine, _
	absolute_path As String, _
	child_name As String, _
	type As FileType _
)
Visual C++
public:
BaseFile(
	ManagerEngine^ man, 
	String^ absolute_path, 
	String^ child_name, 
	FileType type
)

Parameters

man
Type: Moxiecode.Manager..::.ManagerEngine
Reference to manager that requested the file.
absolute_path
Type: System..::.String
Absolute file/directory path.
child_name
Type: System..::.String
Name of child file for the directory.
type
Type: Moxiecode.Manager.FileSystems..::.FileType
Type of file to create.

See Also