Today, I have written a perl script, as the following code:
my @files = <./{FF35B8A6-985C-4644-87B1-3FE83D1A50B}/*>;
print @files;
But it outputs nothing. When I changed the guid path with general path such as d:, it worked. Why? Could perl support the path named with guid string?
OS: Windows 7 32bit
Perl version: ActivePerl 5.12.3
should work. You need to quote special characters (here
{and}).Quote from File::Glob