Class Diagram

- Class diagram shows the list of functions and dependencies among classes, generated by class diagram generator in Eclipse.
- 이클립스의 클래스 다이어그램 생성기를 통해 시각화한 클래스 다이어그램입니다. 각 클래스 간의 의존성과 함수, 변수에 대한 목록이 있습니다.
Initial Screen

- Path input example: "C:/" , "D:/" , "D:/sample_directory_1/samples/
입력의 예는 위와 같으며 전체 경로를 입력으로 받습니다.
- Recusively searches every files that matches search string inside the directory, including files inside sub directories.
재귀적으로 검색을 하기 때문에 검색을 수행한 디렉토리를 기준으로 안의 모든 디렉토리에 대해 검색이 수행됩니다.
- Wild cards are available such as '' or '?'.
와일드 카드가 사용 가능합니다. 현재는 '?' 와 ''을 지원합니다.
- Search Word examples : "a.txt" , "a."(will search for file that ends with a letter 'a'), "???.txt"(will search for text files that has 3 letters.)
"a.txt", "a.", "???.txt" 등의 검색이 가능합니다.
Search Screen

- Each search sessison runn on different threads, so multiple search sessions can run concurrently. A synchronization is used to keep track of deleted or modified files.
각 검색 세션은 다른 쓰레드 위에서 동작하여 동시에 여러 검색 세션 활성화가 가능합니다. 각 세션은 동기화 기법을 통해 삭제되거나 수정된 파일을 추적합니다.
- Number of searches file is unlimited - (as long as your system resource allows)
검색된 파일에 대한 숫자 제한은 없습니다.
- Selected files can be modified(ex: remove).
검색된 파일에 대해 삭제 등의 수정이 가해질 수 있습니다.