Running unzip on remote machine

  • Thread starter Thread starter Avi
  • Start date Start date
A

Avi

Hi all,

What is the best C# way to unzip a file which is on a remote machine. The
two machines share the same domain and the user has permission on both
servers.

Thanks!

Avi
 
What is the best C# way to unzip a file which is on a remote machine. The
two machines share the same domain and the user has permission on both
servers.

Unless the remote machine has something set up which allows you to execute
commands remotely then you're simply going to be unzipping this file from
the same machine that is running your C# program, which is to say you'll be
reading the zipped data over the network and writing the unzipped files back
across the network. (Assuming the target of the uncompressed files is the
same machine where the zip file lives.)
 
Back
Top