Пример #1
0
        public void TestDoesFolderExists()
        {
            string remoteFilePath = "/uprof/testdoesfolderexists";

            Assert.IsFalse(xmlmcService.DoesFileExists(remoteFilePath));

            xmlmcService.CreateFolder(remoteFilePath);

            Assert.IsTrue(xmlmcService.DoesFileExists(remoteFilePath));

            xmlmcService.RemoveFile(remoteFilePath);
            Assert.IsFalse(xmlmcService.DoesFileExists(remoteFilePath));
        }