C# Класс LogViewer.FileUtil

Показать файл Открыть проект

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

Метод Описание
OpenReadOnly ( string fileName, long position ) : FileStream
ShortenPathname ( string pathname, int maxLength ) : string

Shortens a pathname for display purposes.

Shortens a pathname by either removing consecutive components of a path and/or by removing characters from the end of the filename and replacing then with three elipses (...)

In all cases, the root of the passed path will be preserved in it's entirety.

If a UNC path is used or the pathname and maxLength are particularly short, the resulting path may be longer than maxLength.

This method expects fully resolved pathnames to be passed to it. (Use Path.GetFullPath() to obtain this.)

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

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

public static OpenReadOnly ( string fileName, long position ) : FileStream
fileName string
position long
Результат System.IO.FileStream

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

Shortens a pathname for display purposes.
Shortens a pathname by either removing consecutive components of a path and/or by removing characters from the end of the filename and replacing then with three elipses (...)

In all cases, the root of the passed path will be preserved in it's entirety.

If a UNC path is used or the pathname and maxLength are particularly short, the resulting path may be longer than maxLength.

This method expects fully resolved pathnames to be passed to it. (Use Path.GetFullPath() to obtain this.)

public static ShortenPathname ( string pathname, int maxLength ) : string
pathname string
maxLength int
Результат string