소스 검색

scp: notify for uploading finished when uploaded an empty file (#1658)

* scp: add flag to notify for uploading finished when uploaded an empty file

* remove notifyOnEmptyFile Flag
thegame4craft 4 달 전
부모
커밋
6bb397872b
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      src/Renci.SshNet/ScpClient.cs

+ 5 - 0
src/Renci.SshNet/ScpClient.cs

@@ -579,6 +579,11 @@ namespace Renci.SshNet
                 read = source.Read(buffer, 0, buffer.Length);
             }
 
+            if (totalLength == 0 && totalRead == 0)
+            {
+                RaiseUploadingEvent(remoteFileName, totalLength, totalRead);
+            }
+
             SendSuccessConfirmation(channel);
             CheckReturnCode(input);
         }