i-o

Copying files over network (requiring authentication)

Is there some way to authenticate as a local (not network) user in order to copy files over the network in .Net? net use is not an option, and I can't seem to get LogonUser to work. Any ideas? [Edit] Here is some code: public class UserImpersonator : IDisposable { private WindowsImpersonationContext _impersonationContext; p...

non-blocking(event driven I/O) vs. blocking I/O

Recently I stumbled across this pretty slick JS library called nodeJS that acts like a server side JS. The main feature of the language being Evented I/O and which gives the inherent capacity of I/O being completely non-blocking!!! using callbacks. My question is if such kind of I/O mechanism which is completely non-blocking existed in...