SparceMatrix
Technical User
I am using PERL, v5.8.7 built for MSWin32-x86-multi-thread from ActiveState.
This is my first attempt at PERL. I have written three or four small but hard working VBScripts using various objects guided
by O'Reilly's excellent "Windows 98 in a Nutshell". I would like to make use of PERL's superior RegExp features, but until I
get my first useful program going in PERL, I'd like to use the VBScript's RegExp in the Win32::OLE module.
I am stuck here:
This is easy in VBScript:
But in PERL below, I get syntax errors for the "foreach" area and I suspect it is because of the way I am applying the
collections returned by objFolder.Files in PERL:
I have managed to go through ActiveStates PERL documentation for OLE here:
But, I can't seem to extract a clue there.
So, how do you get the "foreach" of PERL to work the same way as it does in VBScript for this particular case?
Any and all tips and clues would be appreciated.
This is my first attempt at PERL. I have written three or four small but hard working VBScripts using various objects guided
by O'Reilly's excellent "Windows 98 in a Nutshell". I would like to make use of PERL's superior RegExp features, but until I
get my first useful program going in PERL, I'd like to use the VBScript's RegExp in the Win32::OLE module.
I am stuck here:
This is easy in VBScript:
Code:
' VB Script Document
Option Explicit
Dim objFSO, objFileToWrite, objFolder
Dim MyFile
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFileToWrite = objFSO.CreateTextFile("FolderTEST.txt")
set objFolder = objFSO.GetFolder("MyFolder")
For Each MyFile in objFolder.Files
objFileToWrite.WriteLine(MyFile.name)
Next
Set objFSO = nothing
Set objFileToWrite = nothing
Set objFolder = nothing
But in PERL below, I get syntax errors for the "foreach" area and I suspect it is because of the way I am applying the
collections returned by objFolder.Files in PERL:
Code:
#!/usr/bin/perl
use Win32::OLE;
#use strict;
use warnings;
$objFSO = Win32::OLE->new('Scripting.FileSystemObject');
$objFileToWrite = $objFSO->CreateTextFile("FolderTEST.txt");
$objFolder = $objFSO->GetFolder("MyFolder");
Foreach $MyFile (@objFolder) {
$objFileToWrite->WriteLine($MyFile->name);
}
I have managed to go through ActiveStates PERL documentation for OLE here:
But, I can't seem to extract a clue there.
So, how do you get the "foreach" of PERL to work the same way as it does in VBScript for this particular case?
Any and all tips and clues would be appreciated.