With FSO I assume you mean FileSystemObject. In the .NET version I would
recomend you use the native .NET IO classes, instead of the COM objects.
How do you delete the file? Do you delete using a reference or a filename?
If you delete it using the filename, there might still be a reference active
to the file.
VB 6 and VB.NET have different garbage collection systems, objects may hang
around longer in the .NET version before they are collected. I think VB 6
uses a reference counting system. The VB 6 version might release the object
faster than the .NET version.
File handles are a limited resource, you should always explicitly release
them.
Chris
> Hi there
>
[quoted text clipped - 10 lines]
>
> Kashif