C# Класс Lucene.Net.Support.FileSupport

Represents the methods to support some operations over files.
Показать файл Открыть проект

Открытые методы

Метод Описание
GetFiles ( System path ) : System.IO.FileInfo[]

Returns an array of abstract pathnames representing the files and directories of the specified path.

Sync ( System fileStream ) : void

Flushes the specified file stream. Ensures that all buffered data is actually written to the file system.

Приватные методы

Метод Описание
CreateTempFile ( string prefix, string suffix, DirectoryInfo directory ) : FileInfo
FlushFileBuffers ( IntPtr hFile ) : bool

Описание методов

GetFiles() публичный статический Метод

Returns an array of abstract pathnames representing the files and directories of the specified path.
public static GetFiles ( System path ) : System.IO.FileInfo[]
path System The abstract pathname to list it childs.
Результат System.IO.FileInfo[]

Sync() публичный статический Метод

Flushes the specified file stream. Ensures that all buffered data is actually written to the file system.
public static Sync ( System fileStream ) : void
fileStream System The file stream.
Результат void