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 Open(File, LockFactory)")]
public static FSDirectory GetDirectory(
	DirectoryInfo file,
	LockFactory lockFactory
)
Visual Basic
<ObsoleteAttribute("Use Open(File, LockFactory)")> _
Public Shared Function GetDirectory ( _
	file As DirectoryInfo, _
	lockFactory As LockFactory _
) As FSDirectory
Visual C++
[ObsoleteAttribute(L"Use Open(File, LockFactory)")]
public:
static FSDirectory^ GetDirectory(
	DirectoryInfo^ file, 
	LockFactory^ lockFactory
)

Parameters

file
Type: System.IO..::..DirectoryInfo
the path to the directory.
lockFactory
Type: Lucene.Net.Store..::..LockFactory
instance of {@link LockFactory} providing the locking implementation.

Return Value

the FSDirectory for the named file.

See Also