Help for this page

Select Code to Download


  1. or download this
    my $genfile = 'c:\\bemisia_coi.gb';
    
  2. or download this
    # Access UNC path \\myserver\c$\Data
    $genfile = '\\myserver\c$\Data\x.gb'; # wrong
    $genfile = '\\\myserver\c$\Data\x.gb'; # correct, but doesn't look nic
    +e
    $genfile = '\\\\myserver\\c$\\Data\\x.gb'; # correct, and looks consis
    +tent