System.IOUtils.TPath.IsValidPathChar

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class function IsValidPathChar(const AChar: Char): Boolean; inline; static;

C++

static bool __fastcall IsValidPathChar(const System::WideChar AChar);

Properties

Type Visibility Source Unit Parent
function public
System.IOUtils.pas
System.IOUtils.hpp
System.IOUtils TPath

Description

Checks whether a given character is allowed in a path string.

Call IsValidPathChar to check whether a given character is allowed in a path string. IsValidPathChar returns true if the character is allowed; false otherwise. The following table lists the parameters expected by this method.


Name Meaning

AChar

The verified character


See Also