in reply to Re^2: sorting a filelist array by filename
in thread sorting a filelist array by filename

the File::Basename modul which I should avoid in this case, cause I must make a very pure and native perl code, without using any modul
File::Basename is a Core module which is included with every installation of Perl. There is no need to download and install it from CPAN, if that's what you're worried about.
  • Comment on Re^3: sorting a filelist array by filename

Replies are listed 'Best First'.
Re^4: sorting a filelist array by filename
by Vasek (Acolyte) on May 20, 2009 at 07:33 UTC
    Hi toolic,

    thanks for your reflection on using the File::Basename. You're right, and I use it quite frequently, anyway, but in this case I'll have to compile my script to binary (os: win) and as I use tinyperl (free) for compiling, which put all necessary items into a LibZip. I can awoid using LibZip if I omit using any modul. That is the real reason of my fighting against the excellent File::Basename modul.