Returns the directory instance for the named location.

Namespace: Lucene.Net.Store
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
[ObsoleteAttribute("Use the method that takes a DirectoryInfo, this will be removed in the 3.0 release")]
public static FSDirectory GetDirectory(
	FileInfo file,
	bool create
)
Visual Basic
<ObsoleteAttribute("Use the method that takes a DirectoryInfo, this will be removed in the 3.0 release")> _
Public Shared Function GetDirectory ( _
	file As FileInfo, _
	create As Boolean _
) As FSDirectory
Visual C++
[ObsoleteAttribute(L"Use the method that takes a DirectoryInfo, this will be removed in the 3.0 release")]
public:
static FSDirectory^ GetDirectory(
	FileInfo^ file, 
	bool create
)

Parameters

file
Type: System.IO..::..FileInfo
the path to the directory.
create
Type: System..::..Boolean
if true, create, or erase any existing contents.

Return Value

the FSDirectory for the named file.

See Also