public void addSystemFile()
        {
            string filePath = "C:\\Users\\User\\Desktop\\algorithms101 - master\\File Types\\download.jpg";

            FileCreationResult result = client.AddSystemFile(filePath, rootDirectoryId).GetAwaiter().GetResult();

            Assert.AreEqual(0, result.error_code, result.error_message);
        }