
File::Glob::Windows - glob routine for Windows environment.

use File::Glob::Windows;
@list = glob($path);
{
local $File::Glob::Windows::encoding = getCodePage();
local $File::Glob::Windows::sorttype = 0;
local $File::Glob::Windows::nocase = 1;
@list = glob($path);
}

This glob routines works correctly on Windows environment.

perl Makefile.PL nmake nmake test nmake install
Notice: If you have no make, and also your OS is 32bit Windows, automatically old nmake.exe is downloaded from site of Microsoft, http://download.microsoft.com/download/vc15/Patch/1.52/W95/EN-US/Nmake15.exe or ftp://ftp.microsoft.com/Softlib/MSLFILES/Nmake15.exe to same path of perl. You can check nmake install path by:
perl -e "print $^X"
Notice: If your Windows OS is 64bit, you may get nmake.exe manually. please find "Windows® Server 2003 SP1 Platform SDK" and also "PSDK-amd64.exe".

This function returns array of path that matches to specified $path.
Third argument is reference of hash that indicate glob option.
* Match any string of characters ? Match any single character
This function detect current ANSI Codepage and returrns string such as "cpNNNNNN";
These functions are different implement to get current codepage.

Encoding of current codepage of OS.
default is 1.

perlglob, File::DosGlob, File::Glob

tateisu <tateisu@gmail.com>