❔ Encryption issue
Hello everyone i need some help. I made this programm who take files from a sourcefolder and encrypt them before putting them in destinationfolder. Now i need help to use the encryption part as a process that'll be used only during the transfer. So technically at the end i should have 2 programms.
4 Replies
I would personally make the encryption logic in a library. That way you can use it from inside the other project, but also make a stand-alone console app for it, if needed
thanks you for the tips but i can't do it this way because it's an obligation to use a encryption process
and not use a library we've already made
Okay, then all you'll need is some clever usage of
Process.StartNew(...)
and likely process.WaitForExit();
Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.