Help for this page

Select Code to Download


  1. or download this
    U:/TEMP/TEMP/A/Test01.txt
    U:/TEMP/TEMP/C/Test03.txt
    U:/TEMP/TEMP/B/Test02.txt
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
    {
        print "$t : $address{$t} : ", glob ("$address{$t}/Test*"), "\n";
    }
    
  3. or download this
    A : U:/TEMP/TEMP/A : U:/TEMP/TEMP/A/Test01.txt
    C : U:/TEMP/TEMP/C : U:/TEMP/TEMP/C/Test03.txt
    B : U:/TEMP/TEMP/B : U:/TEMP/TEMP/B/Test02.txt
    
  4. or download this
    #!/usr/bin/perl
    use strict;
    ...
        my $file = glob ("$address{$t}/Test*");
        print "$t : $address{$t} : $file, \n";
    }
    
  5. or download this
    A : U:/TEMP/TEMP/A : U:/TEMP/TEMP/A/Test01.txt,
    Use of uninitialized value $file in concatenation (.) or string at ...
    + line 15.
    C : U:/TEMP/TEMP/C : ,
    B : U:/TEMP/TEMP/B : U:/TEMP/TEMP/B/Test02.txt,