in reply to Re^4: Lots of memory usage with fork&copy
in thread Lots of memory usage with fork&copy

Well, I'm really not a Windows programmer. When I have to do something on Windows I try to keep it as simple as possible.

One thing you could try is actually spawning a new process rather than using Perl's thread-based fork(). I believe you do that with Win32::Process. You could spawn a separate process to copy each file, which might help keep memory use under control.

-sam

  • Comment on Re^5: Lots of memory usage with fork&copy