Creating multiple folders
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2014 12:18 PM
Hi everyone
I'm new in alfresco, I want to create a root folder in the my repo, and multiple folders inside this root folder. And finally creating a picture inside the every folders. is there any simple method ? thanks
I'm new in alfresco, I want to create a root folder in the my repo, and multiple folders inside this root folder. And finally creating a picture inside the every folders. is there any simple method ? thanks
Labels:
- Labels:
-
Archive
8 REPLIES 8
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2014 12:39 PM
You should login to alfresco share interface, click on Repository from the header. Then you will have an option to create Folder. You can create nested folders inside it and upload a content to it. This is the simplest way to manually create folders/content.
If you want to do it programmatically then simplest way would be to write a custom webscript to create folder structure as per your requirement.
If you want to do it programmatically then simplest way would be to write a custom webscript to create folder structure as per your requirement.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2014 09:57 AM
Thanks romschn ,first way is not attractive for me , becasuse I have many folders. Can you give me some details about how can I write a custom webscript to create folder structure?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2014 11:47 AM
Take a look at - http://ecmarchitect.com/alfresco-developer-series-tutorials/webscripts/tutorial/tutorial.html to get understanding and implementation details about creating custom webscript.
For your specific requirement, you can create an XML schema as shown in example below as per your required implementation.
and in your java controller class, parse the XML and using either NodeService or FileFolderService create the nodes in alfresco.
Hope this helps.
For your specific requirement, you can create an XML schema as shown in example below as per your required implementation.
<root><name>ABC</name><level1folder> <name>level1foldername</name> <level2folder> <name>level2foldername</name> <content1location>c:/folder1/folder2/image1.jpg</content1location> ….. ….. </level2folder> …..…..</root>
and in your java controller class, parse the XML and using either NodeService or FileFolderService create the nodes in alfresco.
Hope this helps.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2014 12:56 PM
Thanks again, it was helpful
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2014 01:15 PM
You may want to mark the comment as Useful

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2014 03:16 AM
Yes

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2014 03:38 AM
Mr. Chauhan I have 129005 folders , and all folders have pictures. Can I create this structure at alfresco with webscripts ?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2014 07:07 AM
Solved, I use with bulk file system service,
https://code.google.com/p/alfresco-bulk-filesystem-import/
https://code.google.com/p/alfresco-bulk-filesystem-import/
