| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 | using System;using System.Linq;using System.Collections.Generic;using System.IO;using Renci.SshNet.Sftp;using System.Text;using Renci.SshNet.Common;using System.Globalization;using System.Threading;using System.Diagnostics.CodeAnalysis;namespace Renci.SshNet{    /// <summary>    /// Implementation of the SSH File Transfer Protocol (SFTP) over SSH.    /// </summary>    public partial class SftpClient : BaseClient    {        #region SynchronizeDirectories        public IEnumerable<FileInfo> SynchronizeDirectories(string sourcePath, string destinationPath, string searchPattern)        {            return InternalSynchronizeDirectories(sourcePath, destinationPath, searchPattern, null);        }        public IAsyncResult BeginSynchronizeDirectories(string sourcePath, string destinationPath, string searchPattern, AsyncCallback asyncCallback, object state)        {            if (sourcePath == null)                throw new ArgumentNullException("sourceDir");            if (destinationPath.IsNullOrWhiteSpace())                throw new ArgumentException("destDir");            //  Ensure that connection is established.            this.EnsureConnection();            var asyncResult = new SftpSynchronizeDirectoriesAsyncResult(asyncCallback, state);            this.ExecuteThread(() =>            {                try                {                    var result = this.InternalSynchronizeDirectories(sourcePath, destinationPath, searchPattern, asyncResult);                    asyncResult.SetAsCompleted(result, false);                }                catch (Exception exp)                {                    asyncResult.SetAsCompleted(exp, false);                }            });            return asyncResult;        }        public IEnumerable<FileInfo> EndSynchronizeDirectories(IAsyncResult asyncResult)        {            var ar = asyncResult as SftpSynchronizeDirectoriesAsyncResult;            if (ar == null || ar.EndInvokeCalled)                throw new ArgumentException("Either the IAsyncResult object did not come from the corresponding async method on this type, or EndExecute was called multiple times with the same IAsyncResult.");            // Wait for operation to complete, then return result or throw exception            return ar.EndInvoke();        }        private IEnumerable<FileInfo> InternalSynchronizeDirectories(string sourcePath, string destinationPath, string searchPattern, SftpSynchronizeDirectoriesAsyncResult asynchResult)        {            if (destinationPath.IsNullOrWhiteSpace())                throw new ArgumentException("destinationPath");            if (!Directory.Exists(sourcePath))                throw new FileNotFoundException(string.Format("Source directory not found: {0}", sourcePath));            IList<FileInfo> uploadedFiles = new List<FileInfo>();            DirectoryInfo sourceDirectory = new DirectoryInfo(sourcePath);#if SILVERLIGHT            var sourceFiles = sourceDirectory.EnumerateFiles(searchPattern);#else            var sourceFiles = sourceDirectory.GetFiles(searchPattern);#endif            if (sourceFiles == null || sourceFiles.Count() <= 0)                return uploadedFiles;            try            {                #region Existing Files at The Destination                var destFiles = InternalListDirectory(destinationPath, null);                Dictionary<string, SftpFile> destDict = new Dictionary<string, SftpFile>();                foreach (var destFile in destFiles)                {                    if (destFile.IsDirectory)                        continue;                    destDict.Add(destFile.Name, destFile);                }                #endregion                #region Upload the difference                bool isDifferent = false;                Flags uploadFlag = Flags.Write | Flags.Truncate | Flags.CreateNewOrOpen;                foreach (var localFile in sourceFiles)                {                    isDifferent = !destDict.ContainsKey(localFile.Name);                    if (!isDifferent)                    {                        SftpFile 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;                    }                    if (isDifferent)                    {                        var remoteFileName = string.Format(CultureInfo.InvariantCulture, @"{0}/{1}", destinationPath, localFile.Name);                        try                        {                            using (var file = File.OpenRead(localFile.FullName))                            {                                this.InternalUploadFile(file, remoteFileName, uploadFlag, null);                            }                            uploadedFiles.Add(localFile);                            if (asynchResult != null)                            {                                asynchResult.Update(uploadedFiles.Count);                            }                        }                        catch (Exception ex)                        {                            throw new Exception(string.Format("Failed to upload {0} to {1}", localFile.FullName, remoteFileName), ex);                        }                    }                }                #endregion            }            catch            {                throw;            }            return uploadedFiles;        }        #endregion    }}
 |