You can not.
The following basic rules allow applications to create and process valid names for files and directories, regardless of the file system:
Use a period to separate the base file name from the extension in the directory or file name.
Use backslash ( \
) to separate path components. The backslash divides the file name from the path to it and one directory name from another directory name in the path. You cannot use a backslash in a name for an actual file or directory, because it is a reserved character that separates the names into components.
Use the backslash as required as part of the volume names, for example, "C: \" in "C: \ path \ file" or "\ server \ share" in "\ server \ share \ path \ file" for universal convention about names (UNC) names. For more information about UNC names, see Maximum Path Length Limit.
Do not include case sensitivity. For example, consider the names OSCAR, Oscar, and oscar to be the same, although some file systems (such as the POSIX-compatible file system) may treat them differently. Note that NTFS supports POSIX semantics for case sensitivity, but this is not the default behavior. For more information, see CreateFile.
Volume designations (letter letters) are also case insensitive. For example, "D: \" and "d: \" refer to the same thing.
Use any character on the current code page for the name, including Unicode characters and characters in the extended character set (128-255), except for the following:
The following reserved characters: < (less than) > (greater than) : (colon) " (double quote) / (forward slash) \ (backslash) | (vertical bar or pipe) ? (question mark) * (asterisk)
The integer value is zero, sometimes called the NULL ASCII character.
Characters whose integer representations range from 1 to 31, with the exception of alternative data streams where these characters are allowed. For more information about file streams, see the File section. Streams.
Any other character that the target file system does not allow.