| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 | using System;using System.Linq;using System.Collections.Generic;using System.IO;using Renci.SshNet.Common;using Renci.SshNet.Sftp;using System.Globalization;namespace Renci.SshNet{    /// <summary>    /// Implementation of the SSH File Transfer Protocol (SFTP) over SSH.    /// </summary>    public partial class SftpClient    {        #region SynchronizeDirectories        /// <summary>        /// Synchronizes the directories.        /// </summary>        /// <param name="sourcePath">The source path.</param>        /// <param name="destinationPath">The destination path.</param>        /// <param name="searchPattern">The search pattern.</param>        /// <returns>List of uploaded files.</returns>        public IEnumerable<FileInfo> SynchronizeDirectories(string sourcePath, string destinationPath, string searchPattern)        {            return InternalSynchronizeDirectories(sourcePath, destinationPath, searchPattern, null);        }        /// <summary>        /// Begins the synchronize directories.        /// </summary>        /// <param name="sourcePath">The source path.</param>        /// <param name="destinationPath">The destination path.</param>        /// <param name="searchPattern">The search pattern.</param>        /// <param name="asyncCallback">The async callback.</param>        /// <param name="state">The state.</param>        /// <returns>        /// An <see cref="System.IAsyncResult" /> that represents the asynchronous directory synchronization.        /// </returns>        /// <exception cref="System.ArgumentNullException"><paramref name="sourcePath"/> is <c>null</c>.</exception>        /// <exception cref="System.ArgumentException"><paramref name="destinationPath"/> is <c>null</c> or contains only whitespace.</exception>        public IAsyncResult BeginSynchronizeDirectories(string sourcePath, string destinationPath, string searchPattern, AsyncCallback asyncCallback, object state)        {            if (sourcePath == null)                throw new ArgumentNullException("sourcePath");            if (destinationPath.IsNullOrWhiteSpace())                throw new ArgumentException("destDir");            var asyncResult = new SftpSynchronizeDirectoriesAsyncResult(asyncCallback, state);            ExecuteThread(() =>            {                try                {                    var result = InternalSynchronizeDirectories(sourcePath, destinationPath, searchPattern, asyncResult);                    asyncResult.SetAsCompleted(result, false);                }                catch (Exception exp)                {                    asyncResult.SetAsCompleted(exp, false);                }            });            return asyncResult;        }        /// <summary>        /// Ends the synchronize directories.        /// </summary>        /// <param name="asyncResult">The async result.</param>        /// <returns>List of uploaded files.</returns>        /// <exception cref="System.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.</exception>        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));            var uploadedFiles = new List<FileInfo>();            var sourceDirectory = new DirectoryInfo(sourcePath);#if SILVERLIGHT            var sourceFiles = sourceDirectory.EnumerateFiles(searchPattern);#else            var sourceFiles = sourceDirectory.GetFiles(searchPattern);#endif            if (sourceFiles == null || !sourceFiles.Any())                return uploadedFiles;            #region Existing Files at The Destination            var destFiles = InternalListDirectory(destinationPath, null);            var destDict = new Dictionary<string, SftpFile>();            foreach (var destFile in destFiles)            {                if (destFile.IsDirectory)                    continue;                destDict.Add(destFile.Name, destFile);            }            #endregion            #region Upload the difference            const Flags uploadFlag = Flags.Write | Flags.Truncate | Flags.CreateNewOrOpen;            foreach (var localFile in sourceFiles)            {                var isDifferent = !destDict.ContainsKey(localFile.Name);                if (!isDifferent)                {                    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;                }                if (isDifferent)                {                    var remoteFileName = string.Format(CultureInfo.InvariantCulture, @"{0}/{1}", destinationPath, localFile.Name);                    try                    {                        using (var file = File.OpenRead(localFile.FullName))                        {                            InternalUploadFile(file, remoteFileName, uploadFlag, null, 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            return uploadedFiles;        }        #endregion    }}
 |