A folder on File System contains .xml files, .txt files and a file exposed by third party tool. Using c# (in VS 2008), I want to encrypt the whole folder in someway before transferring it through FTP.
Help is appreciated.
A folder on File System contains .xml files, .txt files and a file exposed by third party tool. Using c# (in VS 2008), I want to encrypt the whole folder in someway before transferring it through FTP.
Help is appreciated.
Assuming you trust both sides of the file transfer, you can use SCP (file transfer over SSH) or FSTP instead, so all the communication will be encrypted.
If you don't want to, or can't, then you can encrypt the files, there is good MSDN guide on how to encrypt/decrypt files.