FileOutputAdapter

FileOutputAdapter class

출력을 파일로 수집하는 출력 어댑터를 나타냅니다.

public class FileOutputAdapter : OutputAdapter

생성자

이름 설명
FileOutputAdapter(OutputFormat, string) 의 새 인스턴스를 초기화합니다.FileOutputAdapter 클래스.

속성

이름 설명
FilePath { get; } 출력 파일 경로를 가져옵니다.
OutputFormat { get; } 출력 형식을 가져옵니다.

비고

더 알아보기

이 예제는 클래스의 일반적인 사용법을 보여줍니다.

string indexFolder = @"c:\MyIndex\";
string documentsFolder = @"c:\MyDocuments\";

Index index = new Index(indexFolder); // 지정된 폴더에 인덱스 생성

index.Add(documentsFolder); // 지정된 폴더에서 문서 인덱싱

DocumentInfo[] documents = index.GetIndexedDocuments(); // 색인된 문서에 대한 정보 가져오기

FileOutputAdapter adapter = new FileOutputAdapter(@"c:\DocumentText.htm"); // 파일 출력 어댑터 생성
index.GetDocumentText(documents[0], adapter); // 출력 파일에 문서 텍스트 생성

또한보십시오