I want to compress a file on a different machine using C#.
I want to know if that is possible with a C# windows application.
I want to search for that file on the other machine and I want to compress that file.
I want to compress a file on a different machine using C#.
I want to know if that is possible with a C# windows application.
I want to search for that file on the other machine and I want to compress that file.
You can, you would first need to share the directory that you would like to search, via an nfs share or samba share. Assuming it is a Windows machine see https://technet.microsoft.com/en-us/library/cc770880.aspx.
You can then access that file using a network location.
You can compress files using System.IO.Compression see https://msdn.microsoft.com/en-us/library/ms404280(v=vs.110).aspx
You can then use System.IO.Directory.GetFiles to search the directory for a file.