Hi, In the Google Docs Web Client Interface, I can move a folder from My Folders(root) folder to any other folder. e.g., I have folders 1 and 2 under My Folders When I click on My Folders, I get the list 1 2 Now if park on 1 and choose Move To and select 2 (folder) then the folder (1) is deleted from My Folders list and is moved to folder (2). I tried the following code snippet but it is copying the folder 1 under folder 2 properly. But still the folder 1 entry is shown in My Folders. How can I remove the entry of folder1 from the root folder (My Folders) same as that of in Googlde Docs UI.
Here is the code snippet FolderEntry newEntry = new FolderEntry(); URL url = new URL("http://docs.google.com/feeds/folders/private/ full/" + ParentId); newEntry.setId("http://docs.google.com/feeds/documents/private/ full/ folder%folderid_of_Folder1) service.insert(url, newEntry); Now how to remove the entry of folder 1 from the My Folders(root folder). Please help me on this.. Thanks --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Docs Data APIs" group. To post to this group, send email to Google-Docs-Data-APIs@googlegroups.com To unsubscribe from this group, send email to google-docs-data-apis+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/Google-Docs-Data-APIs?hl=en -~----------~----~----~----~------~----~------~--~---