Help for this page

Select Code to Download


  1. or download this
    the program has to find successful match if the filename is following
    Case 1 : test_file_name.dat (all lower case)
    Case 2 : TEST_FILE_NAME.DAT (all upper case)
    Case 3 : Test_File_Name.dat (Mixed)
    
  2. or download this
    lc $name eq 'test_file_name.dat'
    
  3. or download this
        $datfile = uc(test_file_name.dat);
    
  4. or download this
    use strict;    # and
    use warnings;  # as well
    
  5. or download this
            open(FL, $File::Find::name);