http://qs321.pair.com?node_id=430377


in reply to Downloading from a Lotus Notes database

The original program cycles over all the views ( or folders, Notes treats both views and folders the same ). If you go back to the program you will see "$viewname =~ s(\\)(.)g;" In LN the views (folders) are seperated by "\" So, folder->subFolder will be returned from LN as folder\subFolder in $viewname. Then it's converted to folder.subFolder.

It may be as simple as replacing "\" to "/" so when you "my $path = "$dir/$viewname"; " you will end up with my $path = "$dir/folder/subFolder ";

Zero
  • Comment on Re: Downloading from a Lotus Notes database

Replies are listed 'Best First'.
Re^2: Downloading from a Lotus Notes database
by Toby80 (Novice) on Feb 12, 2005 at 15:53 UTC
    Thank you for the ideas, I have to try that on monday, then I can tell you if it works.
    Enjoy your weekend!

    Tobi