Click or drag to resize
Path Class
Performs operations on String instances that contain file or directory path information. These operations are performed in a cross-platform manner.
Inheritance Hierarchy
SystemObject
  Alphaleonis.Win32.FilesystemPath

Namespace: Alphaleonis.Win32.Filesystem
Assembly: AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax
public static class Path

The Path type exposes the following members.

Methods
  NameDescription
Public methodStatic memberAddTrailingDirectorySeparator(String)
[AlphaFS] Adds a trailing DirectorySeparatorChar character to the string, when absent.
Public methodStatic memberAddTrailingDirectorySeparator(String, Boolean)
[AlphaFS] Adds a trailing DirectorySeparatorChar or AltDirectorySeparatorChar character to the string, when absent.
Public methodStatic memberChangeExtension
Changes the extension of a path string.
Public methodStatic memberCombine
Combines an array of strings into a path.
Public methodStatic memberGetDirectoryName(String)
Returns the directory information for the specified path string.
Public methodStatic memberGetDirectoryName(String, Boolean)
[AlphaFS] Returns the directory information for the specified path string.
Public methodStatic memberGetDirectoryNameWithoutRoot(String)
[AlphaFS] Returns the directory information for the specified path string without the root information, for example: "C:\Windows\system32" returns: "Windows".
Public methodStatic memberGetDirectoryNameWithoutRoot(KernelTransaction, String)
[AlphaFS] Returns the directory information for the specified path string without the root information, for example: "C:\Windows\system32" returns: "Windows".
Public methodStatic memberGetExtension(String)
Returns the extension of the specified path string.
Public methodStatic memberGetExtension(String, Boolean)
Returns the extension of the specified path string.
Public methodStatic memberGetFileName(String)
Returns the file name and extension of the specified path string.
Public methodStatic memberGetFileName(String, Boolean)
[AlphaFS] Returns the file name and extension of the specified path string.
Public methodStatic memberGetFileNameWithoutExtension(String)
Returns the file name of the specified path string without the extension.
Public methodStatic memberGetFileNameWithoutExtension(String, Boolean)
[AlphaFS] Returns the file name of the specified path string without the extension.
Public methodStatic memberGetFinalPathNameByHandle(SafeFileHandle)
[AlphaFS] Retrieves the final path for the specified file, formatted as FinalPathFormats.
Public methodStatic memberGetFinalPathNameByHandle(SafeFileHandle, FinalPathFormats)
[AlphaFS] Retrieves the final path for the specified file, formatted as FinalPathFormats.
Public methodStatic memberGetFullPath(String)
Returns the absolute path for the specified path string.
Public methodStatic memberGetFullPath(KernelTransaction, String)
[AlphaFS] Returns the absolute path for the specified path string.
Public methodStatic memberGetInvalidFileNameChars
Gets an array containing the characters that are not allowed in file names.
Public methodStatic memberGetInvalidPathChars
Gets an array containing the characters that are not allowed in path names.
Public methodStatic memberGetLongFrom83ShortPath(String)
[AlphaFS] Converts the specified existing path to its regular long form.
Public methodStatic memberGetLongFrom83ShortPath(KernelTransaction, String)
[AlphaFS] Converts the specified existing path to its regular long form.
Public methodStatic memberGetLongPath
[AlphaFS] Makes a Unicode path (LongPath) of the specified path by prefixing LongPathPrefix.
Public methodStatic memberGetMappedConnectionName
[AlphaFS] Gets the connection name of the locally mapped drive.
Public methodStatic memberGetMappedUncName
[AlphaFS] Gets the network share name from the locally mapped path.
Public methodStatic memberGetPathRoot(String)
Gets the root directory information of the specified path.
Public methodStatic memberGetPathRoot(String, Boolean)
[AlphaFS] Gets the root directory information of the specified path.
Public methodStatic memberGetRandomFileName
Returns a random folder name or file name.
Public methodStatic memberGetRegularPath
[AlphaFS] Gets the regular path from long prefixed one. i.e.: "\\?\C:\Temp\file.txt" to C:\Temp\file.txt" or: "\\?\UNC\Server\share\file.txt" to "\\Server\share\file.txt".
Public methodStatic memberGetShort83Path(String)
[AlphaFS] Retrieves the short path form of the specified path.
Public methodStatic memberGetShort83Path(KernelTransaction, String)
[AlphaFS] Retrieves the short path form of the specified path.
Public methodStatic memberGetSuffixedDirectoryName(String)
[AlphaFS] Returns the directory information for the specified path with a trailing DirectorySeparatorChar character.
Public methodStatic memberGetSuffixedDirectoryName(KernelTransaction, String)
[AlphaFS] Returns the directory information for the specified path with a trailing DirectorySeparatorChar character.
Public methodStatic memberGetSuffixedDirectoryNameWithoutRoot(String)
[AlphaFS] Returns the directory information for the specified path without the root and with a trailing DirectorySeparatorChar character.
Public methodStatic memberGetSuffixedDirectoryNameWithoutRoot(KernelTransaction, String)
[AlphaFS] Returns the directory information for the specified path without the root and with a trailing DirectorySeparatorChar character.
Public methodStatic memberGetTempFileName
Creates a uniquely named, zero-byte temporary file on disk and returns the full path of that file.
Public methodStatic memberGetTempPath
Returns the path of the current user's temporary folder.
Public methodStatic memberGetTempPath(String)
[AlphaFS] Returns the path of the current user's temporary folder.
Public methodStatic memberHasExtension
Determines whether a path includes a file name extension.
Public methodStatic memberIsLocalPath(String)
[AlphaFS] Determines whether the specified path is a local path.
Public methodStatic memberIsLocalPath(String, Boolean)
[AlphaFS] Determines whether the specified path is a local path.
Public methodStatic memberIsLongPath
[AlphaFS] Determines whether the specified path starts with a LongPathPrefix or LongPathUncPrefix.
Public methodStatic memberIsPathRooted(String)
Gets a value indicating whether the specified path string contains absolute or relative path information.
Public methodStatic memberIsPathRooted(String, Boolean)
[AlphaFS] Gets a value indicating whether the specified path string contains absolute or relative path information.
Public methodStatic memberIsUncPath(String)
[AlphaFS] Determines if a path string is a valid Universal Naming Convention (UNC) path.
Public methodStatic memberIsUncPath(String, Boolean)
[AlphaFS] Determines if a path string is a valid Universal Naming Convention (UNC) path.
Public methodStatic memberIsValidName
[AlphaFS] Check if file or folder name has any invalid characters.
Public methodStatic memberLocalToUnc(String)
[AlphaFS] Converts a local path to a network share path.

A Local path, e.g.: "C:\Windows" will be returned as: "\\localhostname\C$\Windows"

If a logical drive points to a network share path, the share path will be returned.

Public methodStatic memberLocalToUnc(String, Boolean)
[AlphaFS] Converts a local path to a network share path.

A Local path, e.g.: "C:\Windows" will be returned as: "\\localhostname\C$\Windows"

If a logical drive points to a network share path, the share path will be returned.

Public methodStatic memberLocalToUnc(String, Boolean, Boolean, Boolean)
[AlphaFS] Converts a local path to a network share path.

A Local path, e.g.: "C:\Windows" will be returned as: "\\localhostname\C$\Windows"

If a logical drive points to a network share path, the share path will be returned.

Public methodStatic memberRemoveTrailingDirectorySeparator(String)
[AlphaFS] Removes the trailing DirectorySeparatorChar character from the string, when present.
Public methodStatic memberRemoveTrailingDirectorySeparator(String, Boolean)
[AlphaFS] Removes the trailing DirectorySeparatorChar or AltDirectorySeparatorChar character from the string, when present.
Top
Fields
  NameDescription
Public fieldStatic memberAltDirectorySeparator
[AlphaFS] AltDirectorySeparatorChar = "/" Provides a platform-specific alternate string used to separate directory levels in a path string that reflects a hierarchical file system organization.
Public fieldStatic memberAltDirectorySeparatorChar
AltDirectorySeparatorChar = '/' Provides a platform-specific alternate character used to separate directory levels in a path string that reflects a hierarchical file system organization.
Public fieldStatic memberCurrentDirectoryPrefix
[AlphaFS] CurrentDirectoryPrefix = "." Provides a current directory string.
Public fieldStatic memberCurrentDirectoryPrefixChar
[AlphaFS] CurrentDirectoryPrefix = '.' Provides a current directory character.
Public fieldStatic memberDevicePrefix
[AlphaFS] DevicePrefix = "\Device\" Provides standard Windows Device prefix.
Public fieldStatic memberDirectorySeparator
[AlphaFS] DirectorySeparator = "\" Provides a platform-specific string used to separate directory levels in a path string that reflects a hierarchical file system organization.
Public fieldStatic memberDirectorySeparatorChar
DirectorySeparatorChar = '\' Provides a platform-specific character used to separate directory levels in a path string that reflects a hierarchical file system organization.
Public fieldStatic memberDosDeviceLanmanPrefix
[AlphaFS] DosDeviceLanmanPrefix = "\Device\LanmanRedirector\" Provides a MS-Dos Lanman Redirector Path UNC prefix to a network share.
Public fieldStatic memberDosDeviceMupPrefix
[AlphaFS] DosDeviceMupPrefix = "\Device\Mup\" Provides a MS-Dos Mup Redirector Path UNC prefix to a network share.
Public fieldStatic memberDosDeviceUncPrefix
[AlphaFS] DosDeviceUncPrefix = "\??\UNC\" Provides a SUBST.EXE Path UNC prefix to a network share.
Public fieldStatic memberExtensionSeparatorChar
[AlphaFS] ExtensionSeparatorChar = '.' Provides an Extension Separator character.
Public fieldStatic memberGlobalRootPrefix
[AlphaFS] GlobalRootPrefix = "\\?\GLOBALROOT\" Provides standard Windows Volume prefix.
Public fieldStatic memberLogicalDrivePrefix
[AlphaFS] MsDosNamespacePrefix = "\\.\" Provides standard logical drive prefix.
Public fieldStatic memberLongPathPrefix
[AlphaFS] LongPathPrefix = "\\?\" Provides standard Windows Long Path prefix.
Public fieldStatic memberLongPathUncPrefix
[AlphaFS] LongPathUncPrefix = "\\?\UNC\" Provides standard Windows Long Path UNC prefix.
Public fieldStatic memberParentDirectoryPrefix
[AlphaFS] ParentDirectoryPrefix = ".." Provides a parent directory string.
Public fieldStatic memberPathSeparator
PathSeparator = ';' A platform-specific separator character used to separate path strings in environment variables.
Public fieldStatic memberStreamSeparator
[AlphaFS] StreamSeparator = ':' Provides a platform-specific Stream-name character.
Public fieldStatic memberStreamSeparatorChar
[AlphaFS] StreamSeparator = ':' Provides a platform-specific Stream-name character.
Public fieldStatic memberStringTerminatorChar
[AlphaFS] StringTerminatorChar = '\0' String Terminator Suffix.
Public fieldStatic memberSubstitutePrefix
[AlphaFS] SubstitutePrefix = "\??\" Provides a SUBST.EXE Path prefix to a Logical Drive.
Public fieldStatic memberUncPrefix
[AlphaFS] UncPrefix = "\\" Provides standard Windows Path UNC prefix.
Public fieldStatic memberWildcardQuestion
[AlphaFS] WildcardQuestion = "?" Provides a replace-item string.
Public fieldStatic memberWildcardQuestionChar
[AlphaFS] WildcardQuestion = '?' Provides a replace-item string.
Public fieldStatic memberWildcardStarMatchAll
[AlphaFS] WildcardStarMatchAll = "*" Provides a match-all-items string.
Public fieldStatic memberWildcardStarMatchAllChar
[AlphaFS] WildcardStarMatchAll = '*' Provides a match-all-items character.
Public fieldStatic memberVolumePrefix
[AlphaFS] VolumePrefix = "\\?\Volume" Provides standard Windows Volume prefix.
Public fieldStatic memberVolumeSeparator
[AlphaFS] VolumeSeparatorChar = ':' Provides a platform-specific Volume Separator character.
Public fieldStatic memberVolumeSeparatorChar
VolumeSeparatorChar = ':' Provides a platform-specific Volume Separator character.
Top
See Also