The characters *
and ?
are used as wildcards in pathnames. How does one refer to a filename that has ?
as one of its actual characters? For example:
[18]> (wild-pathname-p #p"foo")
NIL
[19]> (wild-pathname-p #p"foo?")
T
So referring to the filename "foo?" cannot be done this way. I tried to escape the ?
with a backslash, but that didn't work. I tried going unicode by using \u3f
or \u003f
, but that didn't work.
How do I refer to a file that contains a wildcard as part of its name: How to probe it, open it, etc.?