B
bdezonia
Hello,
I am using Ruby 1.8.6-26 on Windows. I have this little test script:
******************************************************************************************
system("dir x:\\.\\Radeloff\\Projects\\DATA\\NLCD_2001\\landcover\
\nlcd_fg11")
serverDirName = "x:/./Radeloff/Projects/DATA_NLCD_2001/landcover/
nlcd_fg11"
Dir.new(serverDirName).each do | dirEntry |
if inHere.nil?
print "Found the directory #{serverDirName} just fine!\n"
inHere = true
end
end
******************************************************************************************
The first line succeeds. The Dir.new() line bombs out with
Errno::EINVAL.Note that the Dir.new() code was taken out of a working
script that works for millions of files and directories except this
one. The funky "x:/./..." stuff works all the time. I have looked at
file permissions on the directory in question and it matches other
directories in the same place that work fine.
Can anyone tell me what could be wrong here? Could this be a Ruby bug?
I am using Ruby 1.8.6-26 on Windows. I have this little test script:
******************************************************************************************
system("dir x:\\.\\Radeloff\\Projects\\DATA\\NLCD_2001\\landcover\
\nlcd_fg11")
serverDirName = "x:/./Radeloff/Projects/DATA_NLCD_2001/landcover/
nlcd_fg11"
Dir.new(serverDirName).each do | dirEntry |
if inHere.nil?
print "Found the directory #{serverDirName} just fine!\n"
inHere = true
end
end
******************************************************************************************
The first line succeeds. The Dir.new() line bombs out with
Errno::EINVAL.Note that the Dir.new() code was taken out of a working
script that works for millions of files and directories except this
one. The funky "x:/./..." stuff works all the time. I have looked at
file permissions on the directory in question and it matches other
directories in the same place that work fine.
Can anyone tell me what could be wrong here? Could this be a Ruby bug?