private void CreateItems(string branch, int amount, ItemCreateOptions options)
 {
     for (int i = 0; i < amount; i++)
     {
         host.CreateItem(branch + i, options);
     }
 }