Help for this page

Select Code to Download


  1. or download this
    $root = 'D:\projects\\';
    @workspacefiles = split/\n/, `dir *.dsw /s /B`;
    s/\Q$root\E(.+)/$1/ for (@workspacefiles);
    
  2. or download this
    foreach $dswfile ( @workspacefiles )
    {
    ...
    
        # Then I open the file and read the relevant data.
    }