Re: Suggestion for dir()
- Posted by Greg Haberek <g.haberek at comcast.net> Jun 01, 2003
- 592 views
you wouldn't even need to alter file.e, just remake the functions, like
this:
function old_dir(sequence path)
return dir(path)
end function
function dir(sequence path)
object dd
dd = old_dir(path)
if atom(dd) then
return {}
else
return dd
end if
end function
~Greg

