Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 994
Remove FEATURE_DIRECTORYINFO_ENUMERATEFILES#1119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1996,6 +1996,7 @@ public void SetAttributes(string path, SftpFileAttributes fileAttributes) | ||
| /// <exception cref="ArgumentNullException"><paramref name="sourcePath"/> is <c>null</c>.</exception> | ||
| /// <exception cref="ArgumentException"><paramref name="destinationPath"/> is <c>null</c> or contains only whitespace.</exception> | ||
| /// <exception cref="SftpPathNotFoundException"><paramref name="destinationPath"/> was not found on the remote host.</exception> | ||
| /// <exception cref="SshException">If a problem occurs while copying the file</exception> | ||
| public IEnumerable<FileInfo> SynchronizeDirectories(string sourcePath, string destinationPath, string searchPattern) | ||
| { | ||
| if (sourcePath == null) | ||
| @@ -2019,6 +2020,7 @@ public IEnumerable<FileInfo> SynchronizeDirectories(string sourcePath, string de | ||
| /// </returns> | ||
| /// <exception cref="ArgumentNullException"><paramref name="sourcePath"/> is <c>null</c>.</exception> | ||
| /// <exception cref="ArgumentException"><paramref name="destinationPath"/> is <c>null</c> or contains only whitespace.</exception> | ||
| /// <exception cref="SshException">If a problem occurs while copying the file</exception> | ||
| public IAsyncResult BeginSynchronizeDirectories(string sourcePath, string destinationPath, string searchPattern, AsyncCallback asyncCallback, object state) | ||
| { | ||
| if (sourcePath == null) | ||
| @@ -2074,60 +2076,72 @@ private IEnumerable<FileInfo> InternalSynchronizeDirectories(string sourcePath, | ||
| var sourceDirectory = new DirectoryInfo(sourcePath); | ||
| var sourceFiles = FileSystemAbstraction.EnumerateFiles(sourceDirectory, searchPattern).ToList(); | ||
| if (sourceFiles.Count == 0) | ||
| return uploadedFiles; | ||
| using (var sourceFiles = sourceDirectory.EnumerateFiles(searchPattern).GetEnumerator()) | ||
| { | ||
| if (!sourceFiles.MoveNext()) | ||
| { | ||
| return uploadedFiles; | ||
| } | ||
| #region Existing Files at The Destination | ||
| #region Existing Files at The Destination | ||
| var destFiles = InternalListDirectory(destinationPath, null); | ||
| var destDict = new Dictionary<string, ISftpFile>(); | ||
| foreach (var destFile in destFiles) | ||
| { | ||
| if (destFile.IsDirectory) | ||
| continue; | ||
| destDict.Add(destFile.Name, destFile); | ||
| } | ||
| var destFiles = InternalListDirectory(destinationPath, null); | ||
| var destDict = new Dictionary<string, ISftpFile>(); | ||
| foreach (var destFile in destFiles) | ||
| { | ||
| if (destFile.IsDirectory) | ||
WojciechNagorski marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| { | ||
| continue; | ||
| } | ||
| #endregion | ||
| destDict.Add(destFile.Name, destFile); | ||
| } | ||
| #region Upload the difference | ||
| #endregion | ||
| const Flags uploadFlag = Flags.Write | Flags.Truncate | Flags.CreateNewOrOpen; | ||
| foreach (var localFile in sourceFiles) | ||
| { | ||
| var isDifferent = !destDict.ContainsKey(localFile.Name); | ||
| #region Upload the difference | ||
| if (!isDifferent) | ||
| const Flags uploadFlag = Flags.Write | Flags.Truncate | Flags.CreateNewOrOpen; | ||
| do | ||
| { | ||
| var temp = destDict[localFile.Name]; | ||
| // TODO: Use md5 to detect a difference | ||
| //ltang: File exists at the destination => Using filesize to detect the difference | ||
| isDifferent = localFile.Length != temp.Length; | ||
| } | ||
| var localFile = sourceFiles.Current; | ||
| if (localFile == null) | ||
drieseng marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| { | ||
| continue; | ||
| } | ||
| if (isDifferent) | ||
| { | ||
| var remoteFileName = string.Format(CultureInfo.InvariantCulture, @"{0}/{1}", destinationPath, localFile.Name); | ||
| try | ||
| var isDifferent = true; | ||
| if (destDict.TryGetValue(localFile.Name, out var remoteFile)) | ||
| { | ||
| using (var file = File.OpenRead(localFile.FullName)) | ||
| // TODO: Use md5 to detect a difference | ||
drieseng marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| //ltang: File exists at the destination => Using filesize to detect the difference | ||
| isDifferent = localFile.Length != remoteFile.Length; | ||
| } | ||
| if (isDifferent) | ||
| { | ||
| var remoteFileName = string.Format(CultureInfo.InvariantCulture, @"{0}/{1}", destinationPath, localFile.Name); | ||
| try | ||
| { | ||
| InternalUploadFile(file, remoteFileName, uploadFlag, null, null); | ||
| } | ||
| using (var file = File.OpenRead(localFile.FullName)) | ||
| { | ||
| InternalUploadFile(file, remoteFileName, uploadFlag, null, null); | ||
| } | ||
| uploadedFiles.Add(localFile); | ||
| uploadedFiles.Add(localFile); | ||
| if (asynchResult != null) | ||
| if (asynchResult != null) | ||
| { | ||
| asynchResult.Update(uploadedFiles.Count); | ||
| } | ||
| } | ||
| catch (Exception ex) | ||
| { | ||
| asynchResult.Update(uploadedFiles.Count); | ||
| throw new SshException($"Failed to upload {localFile.FullName} to {remoteFileName}", ex); | ||
| } | ||
| } | ||
| catch (Exception ex) | ||
| { | ||
| throw new Exception(string.Format("Failed to upload {0} to {1}", localFile.FullName, remoteFileName), ex); | ||
| } | ||
| } | ||
| while (sourceFiles.MoveNext()); | ||
| } | ||
| #endregion | ||
Uh oh!
There was an error while loading. Please reload this page.