Running unzip on remote machine

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
 
J

Jeff Johnson

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.)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top