Hi,
i need create a folder with C#,
how make this?
i try this:
AtomEntry entry = new AtomEntry();
AtomCategory categoria = new AtomCategory();
categoria.Term = "http://schemas.google.com/docs/2007#folder";
categoria.Scheme = "http://schemas.google.com/g/2005#kind";
entry.Categories.Add(categoria);
entry.Title.Text = "Prova Cartella";
Uri mUrl = new Uri("http://docs.google.com/feeds/" + _username + "/
private/full");
myService.EntrySend(mUrl, entry, GDataRequestType.Insert);
in this code, i don't have error, but i don't create a folder, why?
thanks all
Alessandro
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Base Data API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/Google-Base-data-API?hl=en
-~----------~----~----~----~------~----~------~--~---