SparceMatrix
Technical User
MS Windows directories with spaces create "glob" errors
I am have my introduction to PERL programming in Windows with ActiveState.
So far, I have been able to make use of folder handling with the Win32::OLE WScript object functionality. I needed help with this which I got here:
I am trying to move away from OLE and start applying PERL more directory, but an example provided me there is proving to be a problem and white spaces in the directories is certainly the source of the problem. I saw an offered solution here: thread219-740789 , but it doesn't seem to work for me. I suspect that the function "glob" is the source of the problem because if I look to print the variable $dir, the directory name looks like the white spaces are preserved as suggested in the previous thread.
This works, it provides a list of test files in C:/TEST:
If I substitute "my $dir = 'C:/TEST';" with "my $dir = 'C:/My Directory/My Other Directory'", I just get a list of the mangled and arrayed directory name:
What should I do to protect my white space directories from MS Windows. I think I understand that white spaces are not allowed in Unix/Linux. Can I create a strategy where this ceases to be a problem no matter where I go in PERL? The first time I tried PERL, this was a problem and I need to fix this if I am to go any farther.
I am have my introduction to PERL programming in Windows with ActiveState.
So far, I have been able to make use of folder handling with the Win32::OLE WScript object functionality. I needed help with this which I got here:
I am trying to move away from OLE and start applying PERL more directory, but an example provided me there is proving to be a problem and white spaces in the directories is certainly the source of the problem. I saw an offered solution here: thread219-740789 , but it doesn't seem to work for me. I suspect that the function "glob" is the source of the problem because if I look to print the variable $dir, the directory name looks like the white spaces are preserved as suggested in the previous thread.
This works, it provides a list of test files in C:/TEST:
Code:
#!/usr/bin/perl
use strict;
use warnings;
my $dir = 'C:/TEST';
my $txt = 'output.txt';
my @files = glob("$dir/*.*");
open ( my $fh_output, '>', $txt) or die $!;
foreach my $file ( @files ) {
print $fh_output $file , "\n"
}
close ( $fh_output );
If I substitute "my $dir = 'C:/TEST';" with "my $dir = 'C:/My Directory/My Other Directory'", I just get a list of the mangled and arrayed directory name:
Code:
C:/My
Directory/My
Other
Directory
What should I do to protect my white space directories from MS Windows. I think I understand that white spaces are not allowed in Unix/Linux. Can I create a strategy where this ceases to be a problem no matter where I go in PERL? The first time I tried PERL, this was a problem and I need to fix this if I am to go any farther.