Example #1
0
        public static void createNewFolder(DropboxApi api, DropboxClient client)
        {
            string name = "";

            Console.WriteLine("Введите название папки ");
            name = Console.ReadLine();


            var folder = client.createFolder(api, name);

            Console.WriteLine("\t\tПапка создана");
            Console.WriteLine("{0,20}{1,30}", "Путь ", folder.Root + folder.Path);
            Console.WriteLine("{0,20}{1,30}", "Изменено ", folder.Modified);
        }