| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379 | using Renci.SshNet.Common;namespace Renci.SshNet.IntegrationTests{    // TODO SCP: UPLOAD / DOWNLOAD ZERO LENGTH FILES    // TODO SCP: UPLOAD / DOWNLOAD EMPTY DIRECTORY    // TODO SCP: UPLOAD DIRECTORY THAT ALREADY EXISTS ON REMOTE HOST    [TestClass]    public class ScpTests : TestBase    {        private IConnectionInfoFactory _connectionInfoFactory;        private IRemotePathTransformation _remotePathTransformation;        [TestInitialize]        public void SetUp()        {            _connectionInfoFactory = new LinuxVMConnectionFactory(SshServerHostName, SshServerPort);            _remotePathTransformation = RemotePathTransformation.ShellQuote;        }#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(GetScpDownloadStreamDirectoryDoesNotExistData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Download_Stream_DirectoryDoesNotExist()        {            foreach (var data in GetScpDownloadStreamDirectoryDoesNotExistData())            {                Scp_Download_Stream_DirectoryDoesNotExist((IRemotePathTransformation) data[0],                                                           (string) data[1],                                                           (string) data[2]);            }        }#endif        public void Scp_Download_Stream_DirectoryDoesNotExist(IRemotePathTransformation remotePathTransformation,                                                              string remotePath,                                                              string remoteFile)        {            var completeRemotePath = CombinePaths(remotePath, remoteFile);            // remove complete directory if it's not the home directory of the user            // or else remove the remote file            using (var client = new SftpClient(_connectionInfoFactory.Create()))            {                client.Connect();                if (client.Exists(completeRemotePath))                {                    client.DeleteFile(completeRemotePath);                }                if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                {                    if (client.Exists(remotePath))                    {                        client.DeleteDirectory(remotePath);                    }                }            }            try            {                using (var downloaded = new MemoryStream())                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    try                    {                        client.Download(completeRemotePath, downloaded);                        Assert.Fail();                    }                    catch (ScpException ex)                    {                        Assert.IsNull(ex.InnerException);                        Assert.AreEqual($"scp: {completeRemotePath}: No such file or directory", ex.Message);                    }                }            }            finally            {                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (client.Exists(completeRemotePath))                    {                        client.DeleteFile(completeRemotePath);                    }                    if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                    {                        if (client.Exists(remotePath))                        {                            client.DeleteDirectory(remotePath);                        }                    }                }            }        }#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(GetScpDownloadStreamFileDoesNotExistData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Download_Stream_FileDoesNotExist()        {            foreach (var data in GetScpDownloadStreamFileDoesNotExistData())            {                Scp_Download_Stream_FileDoesNotExist((IRemotePathTransformation)data[0],                                                      (string)data[1],                                                      (string)data[2]);            }        }#endif        public void Scp_Download_Stream_FileDoesNotExist(IRemotePathTransformation remotePathTransformation,                                                         string remotePath,                                                         string remoteFile)        {            var completeRemotePath = CombinePaths(remotePath, remoteFile);            // remove complete directory if it's not the home directory of the user            // or else remove the remote file            using (var client = new SftpClient(_connectionInfoFactory.Create()))            {                client.Connect();                if (client.Exists(completeRemotePath))                {                    client.DeleteFile(completeRemotePath);                }                if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                {                    if (client.Exists(remotePath))                    {                        client.DeleteDirectory(remotePath);                    }                    client.CreateDirectory(remotePath);                }            }            try            {                using (var downloaded = new MemoryStream())                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    try                    {                        client.Download(completeRemotePath, downloaded);                        Assert.Fail();                    }                    catch (ScpException ex)                    {                        Assert.IsNull(ex.InnerException);                        Assert.AreEqual($"scp: {completeRemotePath}: No such file or directory", ex.Message);                    }                }            }            finally            {                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (client.Exists(completeRemotePath))                    {                        client.DeleteFile(completeRemotePath);                    }                    if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                    {                        if (client.Exists(remotePath))                        {                            client.DeleteDirectory(remotePath);                        }                    }                }            }        }#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(GetScpDownloadDirectoryInfoDirectoryDoesNotExistData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Download_DirectoryInfo_DirectoryDoesNotExist()        {            foreach (var data in GetScpDownloadDirectoryInfoDirectoryDoesNotExistData())            {                Scp_Download_DirectoryInfo_DirectoryDoesNotExist((IRemotePathTransformation)data[0],                                                                 (string)data[1]);            }        }#endif        public void Scp_Download_DirectoryInfo_DirectoryDoesNotExist(IRemotePathTransformation remotePathTransformation,                                                                     string remotePath)        {            var localDirectory = Path.GetTempFileName();            File.Delete(localDirectory);            Directory.CreateDirectory(localDirectory);            try            {                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (client.Exists(remotePath))                    {                        client.DeleteDirectory(remotePath);                    }                }                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    try                    {                        client.Download(remotePath, new DirectoryInfo(localDirectory));                        Assert.Fail();                    }                    catch (ScpException ex)                    {                        Assert.IsNull(ex.InnerException);                        Assert.AreEqual($"scp: {remotePath}: No such file or directory", ex.Message);                    }                }            }            finally            {                Directory.Delete(localDirectory, true);                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (client.Exists(remotePath))                    {                        client.DeleteDirectory(remotePath);                    }                }            }        }#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(GetScpDownloadDirectoryInfoExistingFileData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Download_DirectoryInfo_ExistingFile()        {            foreach (var data in GetScpDownloadDirectoryInfoExistingFileData())            {                Scp_Download_DirectoryInfo_ExistingFile((IRemotePathTransformation)data[0],                                                         (string)data[1]);            }        }#endif        public void Scp_Download_DirectoryInfo_ExistingFile(IRemotePathTransformation remotePathTransformation,                                                            string remotePath)        {            var content = CreateMemoryStream(100);            content.Position = 0;            var localDirectory = Path.GetTempFileName();            File.Delete(localDirectory);            Directory.CreateDirectory(localDirectory);            var localFile = Path.Combine(localDirectory, PosixPath.GetFileName(remotePath));            try            {                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    client.UploadFile(content, remotePath);                }                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    client.Download(remotePath, new DirectoryInfo(localDirectory));                }                Assert.IsTrue(File.Exists(localFile));                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    using (var downloaded = new MemoryStream())                    {                        client.DownloadFile(remotePath, downloaded);                        downloaded.Position = 0;                        Assert.AreEqual(CreateFileHash(localFile), CreateHash(downloaded));                    }                }            }            finally            {                Directory.Delete(localDirectory, true);                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (client.Exists(remotePath))                    {                        client.DeleteFile(remotePath);                    }                }            }        }#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(GetScpDownloadDirectoryInfoExistingDirectoryData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Download_DirectoryInfo_ExistingDirectory()        {            foreach (var data in GetScpDownloadDirectoryInfoExistingDirectoryData())            {                Scp_Download_DirectoryInfo_ExistingDirectory((IRemotePathTransformation)data[0],                                                             (string)data[1]);            }        }#endif        public void Scp_Download_DirectoryInfo_ExistingDirectory(IRemotePathTransformation remotePathTransformation,                                                                 string remotePath)        {            var localDirectory = Path.GetTempFileName();            File.Delete(localDirectory);            Directory.CreateDirectory(localDirectory);            var localPathFile1 = Path.Combine(localDirectory, "file1 23");            var remotePathFile1 = CombinePaths(remotePath, "file1 23");            var contentFile1 = CreateMemoryStream(1024);            contentFile1.Position = 0;            var localPathFile2 = Path.Combine(localDirectory, "file2 #$%");            var remotePathFile2 = CombinePaths(remotePath, "file2 #$%");            var contentFile2 = CreateMemoryStream(2048);            contentFile2.Position = 0;            var localPathSubDirectory = Path.Combine(localDirectory, "subdir $1%#");            var remotePathSubDirectory = CombinePaths(remotePath, "subdir $1%#");            var localPathFile3 = Path.Combine(localPathSubDirectory, "file3 %$#");            var remotePathFile3 = CombinePaths(remotePathSubDirectory, "file3 %$#");            var contentFile3 = CreateMemoryStream(256);            contentFile3.Position = 0;            using (var client = new SftpClient(_connectionInfoFactory.Create()))            {                client.Connect();                if (client.Exists(remotePathFile1))                {                    client.DeleteFile(remotePathFile1);                }                if (client.Exists(remotePathFile2))                {                    client.DeleteFile(remotePathFile2);                }                if (client.Exists(remotePathFile3))                {                    client.DeleteFile(remotePathFile3);                }                if (client.Exists(remotePathSubDirectory))                {                    client.DeleteDirectory(remotePathSubDirectory);                }                if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                {                    if (client.Exists(remotePath))                    {                        client.DeleteDirectory(remotePath);                    }                }            }            try            {                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (!client.Exists(remotePath))                    {                        client.CreateDirectory(remotePath);                    }                    client.UploadFile(contentFile1, remotePathFile1);                    client.UploadFile(contentFile1, remotePathFile2);                    client.CreateDirectory(remotePathSubDirectory);                    client.UploadFile(contentFile3, remotePathFile3);                }                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    client.Download(remotePath, new DirectoryInfo(localDirectory));                }                var localFiles = Directory.GetFiles(localDirectory);                Assert.AreEqual(2, localFiles.Length);                Assert.IsTrue(localFiles.Contains(localPathFile1));                Assert.IsTrue(localFiles.Contains(localPathFile2));                var localSubDirecties = Directory.GetDirectories(localDirectory);                Assert.AreEqual(1, localSubDirecties.Length);                Assert.AreEqual(localPathSubDirectory, localSubDirecties[0]);                var localFilesSubDirectory = Directory.GetFiles(localPathSubDirectory);                Assert.AreEqual(1, localFilesSubDirectory.Length);                Assert.AreEqual(localPathFile3, localFilesSubDirectory[0]);                Assert.AreEqual(0, Directory.GetDirectories(localPathSubDirectory).Length);            }            finally            {                Directory.Delete(localDirectory, true);                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (client.Exists(remotePathFile1))                    {                        client.DeleteFile(remotePathFile1);                    }                    if (client.Exists(remotePathFile2))                    {                        client.DeleteFile(remotePathFile2);                    }                    if (client.Exists(remotePathFile3))                    {                        client.DeleteFile(remotePathFile3);                    }                    if (client.Exists(remotePathSubDirectory))                    {                        client.DeleteDirectory(remotePathSubDirectory);                    }                    if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                    {                        if (client.Exists(remotePath))                        {                            client.DeleteDirectory(remotePath);                        }                    }                }            }        }#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(GetScpDownloadFileInfoDirectoryDoesNotExistData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Download_FileInfo_DirectoryDoesNotExist()        {            foreach (var data in GetScpDownloadFileInfoDirectoryDoesNotExistData())            {                Scp_Download_FileInfo_DirectoryDoesNotExist((IRemotePathTransformation)data[0],                                                            (string)data[1],                                                            (string)data[2]);            }        }#endif        public void Scp_Download_FileInfo_DirectoryDoesNotExist(IRemotePathTransformation remotePathTransformation,                                                                string remotePath,                                                                string remoteFile)        {            var completeRemotePath = CombinePaths(remotePath, remoteFile);            // remove complete directory if it's not the home directory of the user            // or else remove the remote file            using (var client = new SftpClient(_connectionInfoFactory.Create()))            {                client.Connect();                if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                {                    if (client.Exists(remotePath))                    {                        client.DeleteDirectory(remotePath);                    }                }            }            var fileInfo = new FileInfo(Path.GetTempFileName());            try            {                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    try                    {                        client.Download(completeRemotePath, fileInfo);                        Assert.Fail();                    }                    catch (ScpException ex)                    {                        Assert.IsNull(ex.InnerException);                        Assert.AreEqual($"scp: {completeRemotePath}: No such file or directory", ex.Message);                    }                }            }            finally            {                fileInfo.Delete();                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (client.Exists(completeRemotePath))                    {                        client.DeleteFile(completeRemotePath);                    }                    if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                    {                        if (client.Exists(remotePath))                        {                            client.DeleteDirectory(remotePath);                        }                    }                }            }        }#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(GetScpDownloadFileInfoFileDoesNotExistData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Download_FileInfo_FileDoesNotExist()        {            foreach (var data in GetScpDownloadFileInfoFileDoesNotExistData())            {                Scp_Download_FileInfo_FileDoesNotExist((IRemotePathTransformation)data[0],                                                        (string)data[1],                                                        (string)data[2]);            }        }#endif        public void Scp_Download_FileInfo_FileDoesNotExist(IRemotePathTransformation remotePathTransformation,                                                           string remotePath,                                                           string remoteFile)        {            var completeRemotePath = CombinePaths(remotePath, remoteFile);            // remove complete directory if it's not the home directory of the user            // or else remove the remote file            using (var client = new SftpClient(_connectionInfoFactory.Create()))            {                client.Connect();                if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                {                    if (client.Exists(remotePath))                    {                        client.DeleteDirectory(remotePath);                    }                    client.CreateDirectory(remotePath);                }            }            var fileInfo = new FileInfo(Path.GetTempFileName());            try            {                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    try                    {                        client.Download(completeRemotePath, fileInfo);                        Assert.Fail();                    }                    catch (ScpException ex)                    {                        Assert.IsNull(ex.InnerException);                        Assert.AreEqual($"scp: {completeRemotePath}: No such file or directory", ex.Message);                    }                }            }            finally            {                fileInfo.Delete();                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (client.Exists(completeRemotePath))                    {                        client.DeleteFile(completeRemotePath);                    }                    if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                    {                        if (client.Exists(remotePath))                        {                            client.DeleteDirectory(remotePath);                        }                    }                }            }        }#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(GetScpDownloadFileInfoExistingDirectoryData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Download_FileInfo_ExistingDirectory()        {            foreach (var data in GetScpDownloadFileInfoExistingDirectoryData())            {                Scp_Download_FileInfo_ExistingDirectory((IRemotePathTransformation)data[0],                                                        (string)data[1]);            }        }#endif        public void Scp_Download_FileInfo_ExistingDirectory(IRemotePathTransformation remotePathTransformation,                                                            string remotePath)        {            // remove complete directory if it's not the home directory of the user            // or else remove the remote file            using (var client = new SftpClient(_connectionInfoFactory.Create()))            {                client.Connect();                if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                {                    if (client.Exists(remotePath))                    {                        client.DeleteDirectory(remotePath);                    }                    client.CreateDirectory(remotePath);                }            }            var fileInfo = new FileInfo(Path.GetTempFileName());            fileInfo.Delete();            try            {                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    try                    {                        client.Download(remotePath, fileInfo);                        Assert.Fail();                    }                    catch (ScpException ex)                    {                        Assert.IsNull(ex.InnerException);                        Assert.AreEqual($"scp: {remotePath}: not a regular file", ex.Message);                    }                    Assert.IsFalse(fileInfo.Exists);                }            }            finally            {                fileInfo.Delete();                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                    {                        if (client.Exists(remotePath))                        {                            client.DeleteDirectory(remotePath);                        }                    }                }            }        }#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(GetScpDownloadFileInfoExistingFileData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Download_FileInfo_ExistingFile()        {            foreach (var data in GetScpDownloadFileInfoExistingFileData())            {                Scp_Download_FileInfo_ExistingFile((IRemotePathTransformation)data[0],                                                        (string)data[1],                                                        (string)data[2],                                                        (int)data[3]);            }        }#endif        public void Scp_Download_FileInfo_ExistingFile(IRemotePathTransformation remotePathTransformation,                                                       string remotePath,                                                       string remoteFile,                                                       int size)        {            var completeRemotePath = CombinePaths(remotePath, remoteFile);            // remove complete directory if it's not the home directory of the user            // or else remove the remote file            using (var client = new SftpClient(_connectionInfoFactory.Create()))            {                client.Connect();                if (client.Exists(completeRemotePath))                {                    client.DeleteFile(completeRemotePath);                }                if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                {                    if (client.Exists(remotePath))                    {                        client.DeleteDirectory(remotePath);                    }                    client.CreateDirectory(remotePath);                }            }            var fileInfo = new FileInfo(Path.GetTempFileName());            try            {                var content = CreateMemoryStream(size);                content.Position = 0;                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    client.Upload(content, completeRemotePath);                }                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    client.Download(completeRemotePath, fileInfo);                }                using (var fs = fileInfo.OpenRead())                {                    var downloadedBytes = new byte[fs.Length];                    Assert.AreEqual(downloadedBytes.Length, fs.Read(downloadedBytes, 0, downloadedBytes.Length));                    content.Position = 0;                    Assert.AreEqual(CreateHash(content), CreateHash(downloadedBytes));                }            }            finally            {                fileInfo.Delete();                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (client.Exists(completeRemotePath))                    {                        client.DeleteFile(completeRemotePath);                    }                    if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                    {                        if (client.Exists(remotePath))                        {                            client.DeleteDirectory(remotePath);                        }                    }                }            }        }#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(GetScpDownloadStreamExistingDirectoryData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Download_Stream_ExistingDirectory()        {            foreach (var data in GetScpDownloadStreamExistingDirectoryData())            {                Scp_Download_Stream_ExistingDirectory((IRemotePathTransformation)data[0],                                                      (string)data[1]);            }        }#endif        public void Scp_Download_Stream_ExistingDirectory(IRemotePathTransformation remotePathTransformation,                                                          string remotePath)        {            using (var client = new SftpClient(_connectionInfoFactory.Create()))            {                client.Connect();                if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                {                    if (client.Exists(remotePath))                    {                        client.DeleteDirectory(remotePath);                    }                    client.CreateDirectory(remotePath);                }            }            var file = Path.GetTempFileName();            File.Delete(file);            try            {                using (var fs = File.OpenWrite(file))                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    try                    {                        client.Download(remotePath, fs);                        Assert.Fail();                    }                    catch (ScpException ex)                    {                        Assert.IsNull(ex.InnerException);                        Assert.AreEqual($"scp: {remotePath}: not a regular file", ex.Message);                    }                    Assert.AreEqual(0, fs.Length);                }            }            finally            {                File.Delete(file);                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                    {                        if (client.Exists(remotePath))                        {                            client.DeleteDirectory(remotePath);                        }                    }                }            }        }#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(GetScpDownloadStreamExistingFileData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Download_Stream_ExistingFile()        {            foreach (var data in GetScpDownloadStreamExistingFileData())            {                Scp_Download_Stream_ExistingFile((IRemotePathTransformation)data[0],                                                 (string)data[1],                                                 (string)data[2],                                                 (int)data[3]);            }        }#endif        public void Scp_Download_Stream_ExistingFile(IRemotePathTransformation remotePathTransformation,                                                     string remotePath,                                                     string remoteFile,                                                     int size)        {            var completeRemotePath = CombinePaths(remotePath, remoteFile);            // remove complete directory if it's not the home directory of the user            // or else remove the remote file            using (var client = new SftpClient(_connectionInfoFactory.Create()))            {                client.Connect();                if (client.Exists(completeRemotePath))                {                    client.DeleteFile(completeRemotePath);                }                if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                {                    if (client.Exists(remotePath))                    {                        client.DeleteDirectory(remotePath);                    }                    client.CreateDirectory(remotePath);                }            }            var file = CreateTempFile(size);            try            {                using (var fs = File.OpenRead(file))                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    client.Upload(fs, completeRemotePath);                }                using (var fs = File.OpenRead(file))                using (var downloaded = new MemoryStream(size))                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    client.Download(completeRemotePath, downloaded);                    downloaded.Position = 0;                    Assert.AreEqual(CreateHash(fs), CreateHash(downloaded));                }            }            finally            {                File.Delete(file);                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (client.Exists(completeRemotePath))                    {                        client.DeleteFile(completeRemotePath);                    }                    if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                    {                        if (client.Exists(remotePath))                        {                            client.DeleteDirectory(remotePath);                        }                    }                }            }        }#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(GetScpUploadFileStreamDirectoryDoesNotExistData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Upload_FileStream_DirectoryDoesNotExist()        {            foreach (var data in GetScpUploadFileStreamDirectoryDoesNotExistData())            {                Scp_Upload_FileStream_DirectoryDoesNotExist((IRemotePathTransformation)data[0],                                                            (string)data[1],                                                            (string)data[2]);            }        }#endif        public void Scp_Upload_FileStream_DirectoryDoesNotExist(IRemotePathTransformation remotePathTransformation,                                                                string remotePath,                                                                string remoteFile)        {            var completeRemotePath = CombinePaths(remotePath, remoteFile);            using (var client = new SftpClient(_connectionInfoFactory.Create()))            {                client.Connect();                if (client.Exists(completeRemotePath))                {                    client.DeleteFile(completeRemotePath);                }                if (client.Exists(remotePath))                {                    client.DeleteDirectory(remotePath);                }            }            var file = CreateTempFile(1000);            try            {                using (var fs = File.OpenRead(file))                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    try                    {                        client.Upload(fs, completeRemotePath);                        Assert.Fail();                    }                    catch (ScpException ex)                    {                        Assert.IsNull(ex.InnerException);                        Assert.AreEqual($"scp: {remotePath}: No such file or directory", ex.Message);                    }                }            }            finally            {                File.Delete(file);                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (client.Exists(completeRemotePath))                    {                        client.DeleteFile(completeRemotePath);                    }                    if (client.Exists(remotePath))                    {                        client.DeleteDirectory(remotePath);                    }                }            }        }#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(GetScpUploadFileStreamExistingDirectoryData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Upload_FileStream_ExistingDirectory()        {            foreach (var data in GetScpUploadFileStreamExistingDirectoryData())            {                Scp_Upload_FileStream_ExistingDirectory((IRemotePathTransformation)data[0],                                                        (string)data[1]);            }        }#endif        public void Scp_Upload_FileStream_ExistingDirectory(IRemotePathTransformation remotePathTransformation,                                                            string remoteFile)        {            using (var client = new SshClient(_connectionInfoFactory.Create()))            {                client.Connect();                using (var command = client.CreateCommand("rm -Rf " + _remotePathTransformation.Transform(remoteFile)))                {                    command.Execute();                }            }            var file = CreateTempFile(1000);            try            {                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    client.CreateDirectory(remoteFile);                }                using (var fs = File.OpenRead(file))                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    try                    {                        client.Upload(fs, remoteFile);                        Assert.Fail();                    }                    catch (ScpException ex)                    {                        Assert.IsNull(ex.InnerException);                        Assert.AreEqual($"scp: {remoteFile}: Is a directory", ex.Message);                    }                }            }            finally            {                File.Delete(file);                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (client.Exists(remoteFile))                    {                        client.DeleteDirectory(remoteFile);                    }                }            }        }#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(ScpUploadFileStreamExistingFileData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Upload_FileStream_ExistingFile()        {            foreach (var data in ScpUploadFileStreamExistingFileData())            {                Scp_Upload_FileStream_ExistingFile((IRemotePathTransformation)data[0],                                                   (string)data[1]);            }        }#endif        public void Scp_Upload_FileStream_ExistingFile(IRemotePathTransformation remotePathTransformation,                                                       string remoteFile)        {            using (var client = new SftpClient(_connectionInfoFactory.Create()))            {                client.Connect();                if (client.Exists(remoteFile))                {                    client.DeleteFile(remoteFile);                }            }            // original content is bigger than new content to ensure file is fully overwritten            var originalContent = CreateMemoryStream(2000);            var file = CreateTempFile(1000);            try            {                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    originalContent.Position = 0;                    client.UploadFile(originalContent, remoteFile);                }                using (var fs = File.OpenRead(file))                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    client.Upload(fs, remoteFile);                }                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    using (var downloaded = new MemoryStream(1000))                    {                        client.DownloadFile(remoteFile, downloaded);                        downloaded.Position = 0;                        Assert.AreEqual(CreateFileHash(file), CreateHash(downloaded));                    }                }            }            finally            {                File.Delete(file);                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (client.Exists(remoteFile))                    {                        client.DeleteFile(remoteFile);                    }                }            }        }#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(GetScpUploadFileStreamFileDoesNotExistData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Upload_FileStream_FileDoesNotExist()        {            foreach (var data in GetScpUploadFileStreamFileDoesNotExistData())            {                Scp_Upload_FileStream_FileDoesNotExist((IRemotePathTransformation)data[0],                                                       (string)data[1],                                                       (string)data[2],                                                       (int)data[3]);            }        }#endif        public void Scp_Upload_FileStream_FileDoesNotExist(IRemotePathTransformation remotePathTransformation,                                                           string remotePath,                                                           string remoteFile,                                                           int size)        {            var completeRemotePath = CombinePaths(remotePath, remoteFile);            using (var client = new SftpClient(_connectionInfoFactory.Create()))            {                client.Connect();                if (client.Exists(completeRemotePath))                {                    client.DeleteFile(completeRemotePath);                }                // remove complete directory if it's not the home directory of the user                if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                {                    if (client.Exists(remotePath))                    {                        client.DeleteDirectory(remotePath);                    }                }            }            var file = CreateTempFile(size);            try            {                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    // create directory if it's not the home directory of the user                    if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                    {                        if (!client.Exists((remotePath)))                        {                            client.CreateDirectory(remotePath);                        }                    }                }                using (var fs = File.OpenRead(file))                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    client.Upload(fs, completeRemotePath);                }                using (var fs = File.OpenRead(file))                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    var sftpFile = client.Get(completeRemotePath);                    Assert.AreEqual(GetAbsoluteRemotePath(client, remotePath, remoteFile), sftpFile.FullName);                    Assert.AreEqual(size, sftpFile.Length);                    var downloaded = client.ReadAllBytes(completeRemotePath);                    Assert.AreEqual(CreateHash(fs), CreateHash(downloaded));                }            }            finally            {                File.Delete(file);                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (client.Exists(completeRemotePath))                    {                        client.DeleteFile(completeRemotePath);                    }                    // remove complete directory if it's not the home directory of the user                    if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                    {                        if (client.Exists(remotePath))                        {                            client.DeleteDirectory(remotePath);                        }                    }                }            }        }        /// <summary>        /// https://github.com/sshnet/SSH.NET/issues/289        /// </summary>#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(GetScpUploadFileInfoDirectoryDoesNotExistData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Upload_FileInfo_DirectoryDoesNotExist()        {            foreach (var data in GetScpUploadFileInfoDirectoryDoesNotExistData())            {                Scp_Upload_FileInfo_DirectoryDoesNotExist((IRemotePathTransformation)data[0],                                                          (string)data[1],                                                          (string)data[2]);            }        }#endif        public void Scp_Upload_FileInfo_DirectoryDoesNotExist(IRemotePathTransformation remotePathTransformation,                                                              string remotePath,                                                              string remoteFile)        {            var completeRemotePath = CombinePaths(remotePath, remoteFile);            using (var client = new SftpClient(_connectionInfoFactory.Create()))            {                client.Connect();                if (client.Exists(completeRemotePath))                {                    client.DeleteFile(completeRemotePath);                }                if (client.Exists(remotePath))                {                    client.DeleteDirectory(remotePath);                }            }            var file = CreateTempFile(1000);            try            {                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    try                    {                        client.Upload(new FileInfo(file), completeRemotePath);                        Assert.Fail();                    }                    catch (ScpException ex)                    {                        Assert.IsNull(ex.InnerException);                        Assert.AreEqual($"scp: {remotePath}: No such file or directory", ex.Message);                    }                }                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    Assert.IsFalse(client.Exists(completeRemotePath));                    Assert.IsFalse(client.Exists(remotePath));                }            }            finally            {                File.Delete(file);                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (client.Exists(completeRemotePath))                    {                        client.DeleteFile(completeRemotePath);                    }                    if (client.Exists(remotePath))                    {                        client.DeleteDirectory(remotePath);                    }                }            }        }        /// <summary>        /// https://github.com/sshnet/SSH.NET/issues/286        /// </summary>#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(GetScpUploadFileInfoExistingDirectoryData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Upload_FileInfo_ExistingDirectory()        {            foreach (var data in GetScpUploadFileInfoExistingDirectoryData())            {                Scp_Upload_FileInfo_ExistingDirectory((IRemotePathTransformation)data[0],                                                      (string)data[1]);            }        }#endif        public void Scp_Upload_FileInfo_ExistingDirectory(IRemotePathTransformation remotePathTransformation,                                                          string remoteFile)        {            using (var client = new SshClient(_connectionInfoFactory.Create()))            {                client.Connect();                using (var command = client.CreateCommand("rm -Rf " + _remotePathTransformation.Transform(remoteFile)))                {                    command.Execute();                }            }            var file = CreateTempFile(1000);            try            {                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    client.CreateDirectory(remoteFile);                }                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    try                    {                        client.Upload(new FileInfo(file), remoteFile);                        Assert.Fail();                    }                    catch (ScpException ex)                    {                        Assert.IsNull(ex.InnerException);                        Assert.AreEqual($"scp: {remoteFile}: Is a directory", ex.Message);                    }                }            }            finally            {                File.Delete(file);                using (var client = new SshClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    using (var command = client.CreateCommand("rm -Rf " + _remotePathTransformation.Transform(remoteFile)))                    {                        command.Execute();                    }                }            }        }#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(GetScpUploadFileInfoExistingFileData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Upload_FileInfo_ExistingFile()        {            foreach (var data in GetScpUploadFileInfoExistingFileData())            {                Scp_Upload_FileInfo_ExistingFile((IRemotePathTransformation)data[0],                                                 (string)data[1]);            }        }#endif        public void Scp_Upload_FileInfo_ExistingFile(IRemotePathTransformation remotePathTransformation,                                                     string remoteFile)        {            using (var client = new SftpClient(_connectionInfoFactory.Create()))            {                client.Connect();                if (client.Exists(remoteFile))                {                    client.DeleteFile(remoteFile);                }            }            // original content is bigger than new content to ensure file is fully overwritten            var originalContent = CreateMemoryStream(2000);            var file = CreateTempFile(1000);            try            {                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    originalContent.Position = 0;                    client.UploadFile(originalContent, remoteFile);                }                var fileInfo = new FileInfo(file)                    {                        LastAccessTimeUtc = new DateTime(1973, 8, 13, 20, 15, 33, DateTimeKind.Utc),                        LastWriteTimeUtc = new DateTime(1974, 1, 24, 3, 55, 12, DateTimeKind.Utc)                    };                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    client.Upload(fileInfo, remoteFile);                }                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    var uploadedFile = client.Get(remoteFile);                    Assert.AreEqual(fileInfo.LastAccessTimeUtc, uploadedFile.LastAccessTimeUtc);                    Assert.AreEqual(fileInfo.LastWriteTimeUtc, uploadedFile.LastWriteTimeUtc);                    using (var downloaded = new MemoryStream(1000))                    {                        client.DownloadFile(remoteFile, downloaded);                        downloaded.Position = 0;                        Assert.AreEqual(CreateFileHash(file), CreateHash(downloaded));                    }                }            }            finally            {                File.Delete(file);                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (client.Exists(remoteFile))                    {                        client.DeleteFile(remoteFile);                    }                }            }        }#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(GetScpUploadFileInfoFileDoesNotExistData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Upload_FileInfo_FileDoesNotExist()        {            foreach (var data in GetScpUploadFileInfoFileDoesNotExistData())            {                Scp_Upload_FileInfo_FileDoesNotExist((IRemotePathTransformation)data[0],                                                     (string)data[1],                                                     (string)data[2],                                                     (int)data[3]);            }        }#endif        public void Scp_Upload_FileInfo_FileDoesNotExist(IRemotePathTransformation remotePathTransformation,                                                         string remotePath,                                                         string remoteFile,                                                         int size)        {            var completeRemotePath = CombinePaths(remotePath, remoteFile);            using (var client = new SftpClient(_connectionInfoFactory.Create()))            {                client.Connect();                if (client.Exists(completeRemotePath))                {                    client.DeleteFile(completeRemotePath);                }                // remove complete directory if it's not the home directory of the user                if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                {                    if (client.Exists(remotePath))                    {                        client.DeleteDirectory(remotePath);                    }                }            }            var file = CreateTempFile(size);            try            {                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    // create directory if it's not the home directory of the user                    if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                    {                        if (!client.Exists(remotePath))                        {                            client.CreateDirectory(remotePath);                        }                    }                }                var fileInfo = new FileInfo(file)                    {                        LastAccessTimeUtc = new DateTime(1973, 8, 13, 20, 15, 33, DateTimeKind.Utc),                        LastWriteTimeUtc = new DateTime(1974, 1, 24, 3, 55, 12, DateTimeKind.Utc)                    };                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    client.Upload(fileInfo, completeRemotePath);                }                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    var uploadedFile = client.Get(completeRemotePath);                    Assert.AreEqual(fileInfo.LastAccessTimeUtc, uploadedFile.LastAccessTimeUtc);                    Assert.AreEqual(fileInfo.LastWriteTimeUtc, uploadedFile.LastWriteTimeUtc);                    Assert.AreEqual(size, uploadedFile.Length);                    using (var downloaded = new MemoryStream(size))                    {                        client.DownloadFile(completeRemotePath, downloaded);                        downloaded.Position = 0;                        Assert.AreEqual(CreateFileHash(file), CreateHash(downloaded));                    }                }            }            finally            {                File.Delete(file);                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (client.Exists(completeRemotePath))                    {                        client.Delete(completeRemotePath);                    }                    // remove complete directory if it's not the home directory of the user                    if (remotePath.Length > 0 && remotePath != client.WorkingDirectory)                    {                        if (client.Exists(remotePath))                        {                            client.DeleteDirectory(remotePath);                        }                    }                }            }        }#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(GetScpUploadDirectoryInfoDirectoryDoesNotExistData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Upload_DirectoryInfo_DirectoryDoesNotExist()        {            foreach (var data in GetScpUploadDirectoryInfoDirectoryDoesNotExistData())            {                Scp_Upload_DirectoryInfo_DirectoryDoesNotExist((IRemotePathTransformation)data[0],                                                               (string)data[1]);            }        }#endif        public void Scp_Upload_DirectoryInfo_DirectoryDoesNotExist(IRemotePathTransformation remotePathTransformation,                                                                   string remoteDirectory)        {            using (var client = new SftpClient(_connectionInfoFactory.Create()))            {                client.Connect();                if (client.Exists((remoteDirectory)))                {                    client.DeleteDirectory(remoteDirectory);                }            }            var localDirectory = Path.GetTempFileName();            File.Delete(localDirectory);            Directory.CreateDirectory(localDirectory);            try            {                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    try                    {                        client.Upload(new DirectoryInfo(localDirectory), remoteDirectory);                        Assert.Fail();                    }                    catch (ScpException ex)                    {                        Assert.IsNull(ex.InnerException);                        Assert.AreEqual($"scp: {remoteDirectory}: No such file or directory", ex.Message);                    }                }                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    Assert.IsFalse(client.Exists(remoteDirectory));                }            }            finally            {                Directory.Delete(localDirectory, true);                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (client.Exists((remoteDirectory)))                    {                        client.DeleteDirectory(remoteDirectory);                    }                }            }        }#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(GetScpUploadDirectoryInfoExistingDirectoryData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Upload_DirectoryInfo_ExistingDirectory()        {            foreach (var data in GetScpUploadDirectoryInfoExistingDirectoryData())            {                Scp_Upload_DirectoryInfo_ExistingDirectory((IRemotePathTransformation)data[0],                                                           (string)data[1]);            }        }#endif        public void Scp_Upload_DirectoryInfo_ExistingDirectory(IRemotePathTransformation remotePathTransformation,                                                               string remoteDirectory)        {            string absoluteRemoteDirectory = GetAbsoluteRemotePath(_connectionInfoFactory, remoteDirectory);            var remotePathFile1 = CombinePaths(remoteDirectory, "file1");            var remotePathFile2 = CombinePaths(remoteDirectory, "file2");            var absoluteremoteSubDirectory1 = CombinePaths(absoluteRemoteDirectory, "sub1");            var remoteSubDirectory1 = CombinePaths(remoteDirectory, "sub1");            var remotePathSubFile1 = CombinePaths(remoteSubDirectory1, "file1");            var remotePathSubFile2 = CombinePaths(remoteSubDirectory1, "file2");            var absoluteremoteSubDirectory2 = CombinePaths(absoluteRemoteDirectory, "sub2");            var remoteSubDirectory2 = CombinePaths(remoteDirectory, "sub2");            using (var client = new SftpClient(_connectionInfoFactory.Create()))            {                client.Connect();                if (client.Exists(remotePathSubFile1))                {                    client.DeleteFile(remotePathSubFile1);                }                if (client.Exists(remotePathSubFile2))                {                    client.DeleteFile(remotePathSubFile2);                }                if (client.Exists(remoteSubDirectory1))                {                    client.DeleteDirectory(remoteSubDirectory1);                }                if (client.Exists(remoteSubDirectory2))                {                    client.DeleteDirectory(remoteSubDirectory2);                }                if (client.Exists(remotePathFile1))                {                    client.DeleteFile(remotePathFile1);                }                if (client.Exists(remotePathFile2))                {                    client.DeleteFile(remotePathFile2);                }                if (remoteDirectory.Length > 0 && remoteDirectory != "." && remoteDirectory != client.WorkingDirectory)                {                    if (client.Exists(remoteDirectory))                    {                        client.DeleteDirectory(remoteDirectory);                    }                    client.CreateDirectory(remoteDirectory);                }            }            var localDirectory = Path.GetTempFileName();            File.Delete(localDirectory);            Directory.CreateDirectory(localDirectory);            var localPathFile1 = Path.Combine(localDirectory, "file1");            var localPathFile2 = Path.Combine(localDirectory, "file2");            var localSubDirectory1 = Path.Combine(localDirectory, "sub1");            var localPathSubFile1 = Path.Combine(localSubDirectory1, "file1");            var localPathSubFile2 = Path.Combine(localSubDirectory1, "file2");            var localSubDirectory2 = Path.Combine(localDirectory, "sub2");            try            {                CreateFile(localPathFile1, 2000);                File.SetLastWriteTimeUtc(localPathFile1, new DateTime(2015, 8, 24, 5, 32, 16, DateTimeKind.Utc));                CreateFile(localPathFile2, 1000);                File.SetLastWriteTimeUtc(localPathFile2, new DateTime(2012, 3, 27, 23, 2, 54, DateTimeKind.Utc));                // create subdirectory with two files                Directory.CreateDirectory(localSubDirectory1);                CreateFile(localPathSubFile1, 1000);                File.SetLastWriteTimeUtc(localPathSubFile1, new DateTime(2013, 4, 12, 16, 54, 22, DateTimeKind.Utc));                CreateFile(localPathSubFile2, 2000);                File.SetLastWriteTimeUtc(localPathSubFile2, new DateTime(2015, 8, 4, 12, 43, 12, DateTimeKind.Utc));                Directory.SetLastWriteTimeUtc(localSubDirectory1,                                              new DateTime(2014, 6, 12, 13, 2, 44, DateTimeKind.Utc));                // create empty subdirectory                Directory.CreateDirectory(localSubDirectory2);                Directory.SetLastWriteTimeUtc(localSubDirectory2,                                              new DateTime(2011, 5, 14, 1, 5, 12, DateTimeKind.Utc));                Directory.SetLastWriteTimeUtc(localDirectory, new DateTime(2015, 10, 14, 22, 45, 11, DateTimeKind.Utc));                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    client.Upload(new DirectoryInfo(localDirectory), remoteDirectory);                }                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    Assert.IsTrue(client.Exists(remoteDirectory));                    var remoteSftpDirectory = client.Get(remoteDirectory);                    Assert.IsNotNull(remoteSftpDirectory);                    Assert.AreEqual(absoluteRemoteDirectory, remoteSftpDirectory.FullName);                    Assert.IsTrue(remoteSftpDirectory.IsDirectory);                    Assert.IsFalse(remoteSftpDirectory.IsRegularFile);                    // Due to CVE-2018-20685, we can no longer set the times or modes on a file or directory                    // that refers to the current directory ('.'), the parent directory ('..') or a directory                    // containing a forward slash ('/').                    Assert.AreNotEqual(Directory.GetLastWriteTimeUtc(localDirectory), remoteSftpDirectory.LastWriteTimeUtc);                    Assert.IsTrue(client.Exists(remotePathFile1));                    Assert.AreEqual(CreateFileHash(localPathFile1), CreateRemoteFileHash(client, remotePathFile1));                    var remoteSftpFile = client.Get(remotePathFile1);                    Assert.IsNotNull(remoteSftpFile);                    Assert.IsFalse(remoteSftpFile.IsDirectory);                    Assert.IsTrue(remoteSftpFile.IsRegularFile);                    Assert.AreEqual(File.GetLastWriteTimeUtc(localPathFile1), remoteSftpFile.LastWriteTimeUtc);                    Assert.IsTrue(client.Exists(remotePathFile2));                    Assert.AreEqual(CreateFileHash(localPathFile2), CreateRemoteFileHash(client, remotePathFile2));                    remoteSftpFile = client.Get(remotePathFile2);                    Assert.IsNotNull(remoteSftpFile);                    Assert.IsFalse(remoteSftpFile.IsDirectory);                    Assert.IsTrue(remoteSftpFile.IsRegularFile);                    Assert.AreEqual(File.GetLastWriteTimeUtc(localPathFile2), remoteSftpFile.LastWriteTimeUtc);                    Assert.IsTrue(client.Exists(remoteSubDirectory1));                    remoteSftpDirectory = client.Get(remoteSubDirectory1);                    Assert.IsNotNull(remoteSftpDirectory);                    Assert.AreEqual(absoluteremoteSubDirectory1, remoteSftpDirectory.FullName);                    Assert.IsTrue(remoteSftpDirectory.IsDirectory);                    Assert.IsFalse(remoteSftpDirectory.IsRegularFile);                    Assert.AreEqual(Directory.GetLastWriteTimeUtc(localSubDirectory1), remoteSftpDirectory.LastWriteTimeUtc);                    Assert.IsTrue(client.Exists(remotePathSubFile1));                    Assert.AreEqual(CreateFileHash(localPathSubFile1), CreateRemoteFileHash(client, remotePathSubFile1));                    Assert.IsTrue(client.Exists(remotePathSubFile2));                    Assert.AreEqual(CreateFileHash(localPathSubFile2), CreateRemoteFileHash(client, remotePathSubFile2));                    Assert.IsTrue(client.Exists(remoteSubDirectory2));                    remoteSftpDirectory = client.Get(remoteSubDirectory2);                    Assert.IsNotNull(remoteSftpDirectory);                    Assert.AreEqual(absoluteremoteSubDirectory2, remoteSftpDirectory.FullName);                    Assert.IsTrue(remoteSftpDirectory.IsDirectory);                    Assert.IsFalse(remoteSftpDirectory.IsRegularFile);                    Assert.AreEqual(Directory.GetLastWriteTimeUtc(localSubDirectory2), remoteSftpDirectory.LastWriteTimeUtc);                }            }            finally            {                Directory.Delete(localDirectory, true);                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (client.Exists(remotePathSubFile1))                    {                        client.DeleteFile(remotePathSubFile1);                    }                    if (client.Exists(remotePathSubFile2))                    {                        client.DeleteFile(remotePathSubFile2);                    }                    if (client.Exists(remoteSubDirectory1))                    {                        client.DeleteDirectory(remoteSubDirectory1);                    }                    if (client.Exists(remoteSubDirectory2))                    {                        client.DeleteDirectory(remoteSubDirectory2);                    }                    if (client.Exists(remotePathFile1))                    {                        client.DeleteFile(remotePathFile1);                    }                    if (client.Exists(remotePathFile2))                    {                        client.DeleteFile(remotePathFile2);                    }                    if (remoteDirectory.Length > 0 && remoteDirectory != "." && remoteDirectory != client.WorkingDirectory)                    {                        if (client.Exists(remoteDirectory))                        {                            client.DeleteDirectory(remoteDirectory);                        }                    }                }            }        }#if FEATURE_MSTEST_DATATEST        [DataTestMethod]        [DynamicData(nameof(GetScpUploadDirectoryInfoExistingFileData), DynamicDataSourceType.Method)]#else        [TestMethod]        public void Scp_Upload_DirectoryInfo_ExistingFile()        {            foreach (var data in GetScpUploadDirectoryInfoExistingFileData())            {                Scp_Upload_DirectoryInfo_ExistingFile((IRemotePathTransformation)data[0],                                                      (string)data[1]);            }        }#endif        public void Scp_Upload_DirectoryInfo_ExistingFile(IRemotePathTransformation remotePathTransformation,                                                          string remoteDirectory)        {            var remotePathFile1 = CombinePaths(remoteDirectory, "file1");            var remotePathFile2 = CombinePaths(remoteDirectory, "file2");            using (var client = new SshClient(_connectionInfoFactory.Create()))            {                client.Connect();                Console.WriteLine(client.ConnectionInfo.CurrentKeyExchangeAlgorithm);                using (var command = client.CreateCommand("rm -Rf " + _remotePathTransformation.Transform(remoteDirectory)))                {                    command.Execute();                }            }            var localDirectory = Path.GetTempFileName();            File.Delete(localDirectory);            Directory.CreateDirectory(localDirectory);            var localPathFile1 = Path.Combine(localDirectory, "file1");            var localPathFile2 = Path.Combine(localDirectory, "file2");            try            {                CreateFile(localPathFile1, 50);                CreateFile(localPathFile2, 50);                using (var client = new ScpClient(_connectionInfoFactory.Create()))                {                    if (remotePathTransformation != null)                    {                        client.RemotePathTransformation = remotePathTransformation;                    }                    client.Connect();                    CreateRemoteFile(client, remoteDirectory, 10);                    try                    {                        client.Upload(new DirectoryInfo(localDirectory), remoteDirectory);                        Assert.Fail();                    }                    catch (ScpException ex)                    {                        Assert.IsNull(ex.InnerException);                        Assert.AreEqual($"scp: {remoteDirectory}: Not a directory", ex.Message);                    }                }            }            finally            {                Directory.Delete(localDirectory, true);                using (var client = new SftpClient(_connectionInfoFactory.Create()))                {                    client.Connect();                    if (client.Exists(remotePathFile1))                    {                        client.DeleteFile(remotePathFile1);                    }                    if (client.Exists(remotePathFile2))                    {                        client.DeleteFile(remotePathFile2);                    }                    if (client.Exists((remoteDirectory)))                    {                        client.DeleteFile(remoteDirectory);                    }                }            }        }        private static IEnumerable<object[]> GetScpDownloadStreamDirectoryDoesNotExistData()        {            yield return new object[] { RemotePathTransformation.None, "/home/sshnet/scp-directorydoesnotexist", "scp-file" };            yield return new object[] { RemotePathTransformation.None, "/home/sshnet/scp-directorydoesnotexist", "scp-file" };        }        private static IEnumerable<object[]> GetScpUploadFileInfoFileDoesNotExistData()        {            yield return new object[] { RemotePathTransformation.None, "/home/sshnet", "test123", 0 };            yield return new object[] { RemotePathTransformation.None, "/home/sshnet", "test123", 5 * 1024 * 1024 };            yield return new object[] { RemotePathTransformation.ShellQuote, "/home/sshnet/dir|&;<>()$`\"'sp\u0100ce \\tab\tlf\n*?[#~=%", "file123", 1024 };            yield return new object[] { null, "/home/sshnet/scp test", "file 123", 1024 };            yield return new object[] { RemotePathTransformation.None, "/home/sshnet/scp-test", "file|&;<>()$`\"'sp\u0100ce \\tab\tlf*?[#~=%", 1024 };            yield return new object[] { null, "", "scp-issue280", 1024 };        }        private static IEnumerable<object[]> GetScpUploadFileStreamFileDoesNotExistData()        {            yield return new object[] { RemotePathTransformation.ShellQuote, "/home/sshnet/dir|&;<>()$`\"'sp\u0100ce \\tab\tlf\n*?[#~=%", "file123", 0 };            yield return new object[] { RemotePathTransformation.ShellQuote, "/home/sshnet/dir|&;<>()$`\"'sp\u0100ce \\tab\tlf\n*?[#~=%", "file123", 1024 };            yield return new object[] { null, "/home/sshnet/scp test", "file 123", 1024 };            yield return new object[] { RemotePathTransformation.ShellQuote, "/home/sshnet/scp-test", "file|&;<>()$`\"'sp\u0100ce \\tab\tlf*?[#~=%", 1024 };            yield return new object[] { RemotePathTransformation.None, "", "scp-issue280", 1024 };        }        private static IEnumerable<object[]> GetScpUploadDirectoryInfoExistingDirectoryData()        {            yield return new object[] { RemotePathTransformation.None, "scp-directorydoesnotexist" };            yield return new object[] { RemotePathTransformation.None, "." };            yield return new object[] { RemotePathTransformation.ShellQuote, "/home/sshnet/dir|&;<>()$`\"'sp\u0100ce \\tab\tlf*?[#~=%" };        }        private static IEnumerable<object[]> GetScpUploadDirectoryInfoExistingFileData()        {            yield return new object[] { RemotePathTransformation.None, "scp-upload-file" };        }        private static IEnumerable<object[]> ScpUploadFileStreamExistingFileData()        {            yield return new object[] { RemotePathTransformation.None, "/home/sshnet/scp-upload-file" };        }        private static IEnumerable<object[]> GetScpDownloadStreamFileDoesNotExistData()        {            yield return new object[] { RemotePathTransformation.None, "/home/sshnet", "scp-filedoesnotexist" };        }        private static IEnumerable<object[]> GetScpDownloadDirectoryInfoDirectoryDoesNotExistData()        {            yield return new object[] { RemotePathTransformation.None, "/home/sshnet/scp-download" };        }        private static IEnumerable<object[]> GetScpDownloadDirectoryInfoExistingFileData()        {            yield return new object[] { RemotePathTransformation.None, "scp-download" };        }        private static IEnumerable<object[]> GetScpDownloadDirectoryInfoExistingDirectoryData()        {            yield return new object[] { RemotePathTransformation.None, "scp-download" };            yield return new object[] { RemotePathTransformation.ShellQuote, "/home/sshnet/dir|&;<>()$`\"'space \\tab\tlf*?[#~=%" };        }        private static IEnumerable<object[]> GetScpDownloadFileInfoDirectoryDoesNotExistData()        {            yield return new object[] { RemotePathTransformation.None, "/home/sshnet/scp-directorydoesnotexist", "scp-file" };        }        private static IEnumerable<object[]> GetScpDownloadFileInfoFileDoesNotExistData()        {            yield return new object[] { RemotePathTransformation.None, "/home/sshnet", "scp-filedoesnotexist" };        }        private static IEnumerable<object[]> GetScpDownloadFileInfoExistingDirectoryData()        {            yield return new object[] { RemotePathTransformation.None, "/home/sshnet/scp-test" };        }        private static IEnumerable<object[]> GetScpDownloadFileInfoExistingFileData()        {            yield return new object[] { null, "", "file 123", 0 };            yield return new object[] { null, "", "file 123", 1024 };            yield return new object[] { RemotePathTransformation.ShellQuote, "", "file|&;<>()$`\"'sp\u0100ce \\tab\tlf*?[#~=%", 1024 };            yield return new object[] { null, "/home/sshnet/scp test", "file 123", 1024 };            yield return new object[] { RemotePathTransformation.ShellQuote, "/home/sshnet/dir|&;<>()$`\"'sp\u0100ce \\tab\tlf\n*?[#~=%", "file123", 1024 };            yield return new object[] { RemotePathTransformation.ShellQuote, "/home/sshnet/scp-test", "file|&;<>()$`\"'sp\u0100ce \\tab\tlf*?[#~=%", 1024 };        }        private static IEnumerable<object[]> GetScpDownloadStreamExistingDirectoryData()        {            yield return new object[] { RemotePathTransformation.None, "/home/sshnet/scp-test" };        }        private static IEnumerable<object[]> GetScpDownloadStreamExistingFileData()        {            yield return new object[] { null, "", "file 123", 0 };            yield return new object[] { null, "", "file 123", 1024 };            yield return new object[] { RemotePathTransformation.ShellQuote, "", "file|&;<>()$`\"'sp\u0100ce \\tab\tlf*?[#~=%", 1024 };            yield return new object[] { null, "/home/sshnet/scp test", "file 123", 1024 };            yield return new object[] { RemotePathTransformation.ShellQuote, "/home/sshnet/dir|&;<>()$`\"'sp\u0100ce \\tab\tlf\n*?[#~=%", "file123", 1024 };            yield return new object[] { RemotePathTransformation.ShellQuote, "/home/sshnet/scp-test", "file|&;<>()$`\"'sp\u0100ce \\tab\tlf*?[#~=%", 1024 };        }        private static IEnumerable<object[]> GetScpUploadFileStreamDirectoryDoesNotExistData()        {            yield return new object[] { RemotePathTransformation.None, "/home/sshnet/scp-issue289", "file123" };        }        private static IEnumerable<object[]> GetScpUploadFileStreamExistingDirectoryData()        {            yield return new object[] { RemotePathTransformation.None, "/home/sshnet/scp-issue286" };        }        private static IEnumerable<object[]> GetScpUploadFileInfoDirectoryDoesNotExistData()        {            yield return new object[] { RemotePathTransformation.None, "/home/sshnet/scp-issue289", "file123" };        }        private static IEnumerable<object[]> GetScpUploadFileInfoExistingDirectoryData()        {            yield return new object[] { RemotePathTransformation.None, "/home/sshnet/scp-issue286" };        }        private static IEnumerable<object[]> GetScpUploadFileInfoExistingFileData()        {            yield return new object[] { RemotePathTransformation.None, "/home/sshnet/scp-upload-file" };        }        private static IEnumerable<object[]> GetScpUploadDirectoryInfoDirectoryDoesNotExistData()        {            yield return new object[] { RemotePathTransformation.None, "scp-directorydoesnotexist" };        }        private static void CreateRemoteFile(ScpClient client, string remoteFile, int size)        {            var file = CreateTempFile(size);            try            {                using (var fs = new FileStream(file, FileMode.Open, FileAccess.Read, FileShare.Read))                {                    client.Upload(fs, remoteFile);                }            }            finally            {                File.Delete(file);            }        }        private static string GetAbsoluteRemotePath(SftpClient client, string directoryName, string fileName)        {            var absolutePath = string.Empty;            if (directoryName.Length == 0)            {                absolutePath += client.WorkingDirectory;            }            else            {                if (directoryName[0] != '/')                {                    absolutePath += client.WorkingDirectory + "/" + directoryName;                }                else                {                    absolutePath = directoryName;                }            }            return absolutePath + "/" + fileName;        }        private static string GetAbsoluteRemotePath(IConnectionInfoFactory connectionInfoFactory, string directoryName)        {            var absolutePath = string.Empty;            if (directoryName.Length == 0 || directoryName == ".")            {                using (var client = new SftpClient(connectionInfoFactory.Create()))                {                    client.Connect();                    absolutePath += client.WorkingDirectory;                }            }            else            {                if (directoryName[0] != '/')                {                    using (var client = new SftpClient(connectionInfoFactory.Create()))                    {                        client.Connect();                        absolutePath += client.WorkingDirectory + "/" + directoryName;                    }                }                else                {                    absolutePath = directoryName;                }            }            return absolutePath;        }        private static string CreateRemoteFileHash(SftpClient client, string remotePath)        {            using (var fs = client.OpenRead(remotePath))            {                return CreateHash(fs);            }        }        private static string CombinePaths(string path1, string path2)        {            if (path1.Length == 0)            {                return path2;            }            if (path2.Length == 0)            {                return path1;            }            return path1 + "/" + path2;        }    }}
 |