I am using SFTP Library (Renci.sshnet) to connect to SFTP servers through C#, I have to create an interface in c# which downloads the files from the sftp servers and I am stuck in an issue
Issue : What if the file I am trying to download is actually getting pushed from the client the same time, as in may be that file is in progress for uploading, and in that case , my program will throw exceptions, so is there any way I can understand that the file is uploading and can ask user to wait until file is completely uploaded.
I hope, the question makes sense!!