Click or drag to resize

GetFullPathOptions Enumeration

A bitfield of flags for specifying options for various internal operations that convert paths to full paths.

Namespace:  Alphaleonis.Win32.Filesystem
Assembly:  AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax
[FlagsAttribute]
public enum GetFullPathOptions
Members
  Member nameValueDescription
None0No special options applies.
TrimEnd1Remove any trailing whitespace from the path.
AddTrailingDirectorySeparator2Add a trailing directory separator to the path (if one does not already exist).
RemoveTrailingDirectorySeparator4Remove the trailing directory separator from the path (if one exists).
AsLongPath8Return full path as long full path (Unicode format). Not valid for GetRegularPath(String).
ContinueOnNonExist16Prevents any exception from being thrown if a filesystem object does not exist. Not valid for GetRegularPath(String).
CheckInvalidPathChars32Check that the path contains only valid path-characters.
CheckAdditional64Also check for wildcard (? and *) characters.
KeepDotOrSpace128Do not trim the trailing dot or space.
FullCheck96Performs both CheckInvalidPathChars and CheckAdditional checks.
See Also