C# 클래스 Mosa.FileSystem.VFS.PathResolver

Implements path resolution functionality for the Mosa.VFS.VirtualFileSystem.
파일 보기 프로젝트 열기: tgiphil/MOSA-Project 1 사용 예제들

공개 메소드들

메소드 설명
Resolve ( DirectoryEntry rootDirectory, string &path ) : DirectoryEntry

Performs a standard path lookup.

This call my result in other exceptions not specified in the above list. Other exceptions can be thrown by IVfsNode implementations, which are visited during the traversal process. For example a network file system node may throw an exception, if the server is unreachable.

Resolve ( DirectoryEntry rootDirectory, string &path, PathResolutionFlags flags ) : DirectoryEntry

Performs a path lookup obeying to the passed flags.

This call my result in other exceptions not specified in the above list. Other exceptions can be thrown by IVfsNode implementations, which are visited during the traversal process. For example a network file system node may throw an exception, if the server is unreachable.

비공개 메소드들

메소드 설명
PathResolver ( DirectoryEntry rootDirectory, DirectoryEntry currentDirectory )
Resolve ( string &path, PathResolutionFlags flags ) : DirectoryEntry

Performs an iterative lookup of the given path starting from the root and obeying to the specified flags.

This call may result in other exceptions not specified in the above list. Other exceptions can be thrown by IVfsNode implementations, which are visited during the traversal process. For example a network file system node may throw an exception, if the server is unreachable.

메소드 상세

Resolve() 공개 정적인 메소드

Performs a standard path lookup.
This call my result in other exceptions not specified in the above list. Other exceptions can be thrown by IVfsNode implementations, which are visited during the traversal process. For example a network file system node may throw an exception, if the server is unreachable.
public static Resolve ( DirectoryEntry rootDirectory, string &path ) : DirectoryEntry
rootDirectory DirectoryEntry The root directory.
path string The path to resolve.
리턴 DirectoryEntry

Resolve() 공개 정적인 메소드

Performs a path lookup obeying to the passed flags.
This call my result in other exceptions not specified in the above list. Other exceptions can be thrown by IVfsNode implementations, which are visited during the traversal process. For example a network file system node may throw an exception, if the server is unreachable.
public static Resolve ( DirectoryEntry rootDirectory, string &path, PathResolutionFlags flags ) : DirectoryEntry
rootDirectory DirectoryEntry The root directory.
path string The path to resolve.
flags PathResolutionFlags Controls aspects of the path lookup process.
리턴 DirectoryEntry