C# 클래스 Yava.FoldersFile.Folder

파일 보기 프로젝트 열기: Beluki/Yava 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
Executable String
Extensions HashSet
Name String
Parameters String
Path String
WorkingDirectory String

공개 메소드들

메소드 설명
EnumerateFiles ( ) : IEnumerable

Search this folder path and return the matching files.

Folder ( String name, String path, String executable, HashSet extensions, String parameters, String workingdirectory ) : System

A folder specification. FoldersFileReader generates them when reading the folders ini file.

메소드 상세

EnumerateFiles() 공개 메소드

Search this folder path and return the matching files.
public EnumerateFiles ( ) : IEnumerable
리턴 IEnumerable

Folder() 공개 메소드

A folder specification. FoldersFileReader generates them when reading the folders ini file.
public Folder ( String name, String path, String executable, HashSet extensions, String parameters, String workingdirectory ) : System
name String Folder name.
path String Folder path in the filesystem.
executable String Application to start.
extensions HashSet Extensions to include when searching for files.
parameters String Command-line arguments to use when launching the application.
workingdirectory String Initial directory for the application to be started.
리턴 System

프로퍼티 상세

Executable 공개적으로 프로퍼티

Application to start.
public String Executable
리턴 String

Extensions 공개적으로 프로퍼티

Extensions to include when searching for files. Can be null when unspecified in the ini file.
public HashSet Extensions
리턴 HashSet

Name 공개적으로 프로퍼티

Folder name (section in the ini).
public String Name
리턴 String

Parameters 공개적으로 프로퍼티

Command-line arguments to use when launching the application. Can be null when unspecified in the ini file.
public String Parameters
리턴 String

Path 공개적으로 프로퍼티

Folder path in the filesystem.
public String Path
리턴 String

WorkingDirectory 공개적으로 프로퍼티

Initial directory for the application to be started. Can be null when unspecified in the ini file.
public String WorkingDirectory
리턴 String