Is it possible to add multiple files to a collection at once?

Hello,
I have a lot of big zip files and I want to add them all to a single collection. It would take ages to do it one-by-one. Is it possible to do them all at once? How can I do that?
Many thanks.

Hi there,
Thanks for posting. Unfortunately, it's not possible to upload a zipped file to Acrobat.com; we support the filetypes listed on the following linked page:
http://kb2.adobe.com/cps/524/cpsid_52456.html
I'm very sorry to disappoint you! We are constantly trying to improve our service, and I'll be sure to put in a good word for supporting .zip uploads. In the meantime, you could always suggest it yourself at our Ideas site, where people post, view, and vote on suggestions for additions to the service at Acrobat.com:
http://ideas.acrobat.com
Thanks, and take care,
Rebecca

Similar Messages

  • URGENT: Is it possible to upload multiple files using STRUTS

    Hi,
    Is it possible to upload multiple files using STRUTS.
    I am able to upload a single file. But how do i upload multiple files ??
    upload.jsp
    <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
    <%@ taglib uri="/WEB-INF/struts-template.tld" prefix="template" %>
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <html:html>
    <head>
    <title>New Page 1</title>
    </head>
    <body>
    <html:form action="/secure/uploadFile.do" enctype="multipart/form-data" method="POST" type="com.smartstream.webconnect.user.actions.UploadActionForm">
    <p>File to upload
    <html:file property="fileUpload" size="20"/></p>
    <p><html:submit/></p>
    </html:form>
    </body>
    </html:html>
    UploadAction.java
    public class UploadAction extends BaseAction {
        Logger log = Logger.getLogger(AttachMessageAction.class);
        public ActionForward executeAction(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws ActionException {
            System.out.println("executeAction of UploadAction");
            UploadActionForm uploadActionForm = (UploadActionForm) form;
            int fileSize = uploadActionForm.getFileUpload().getFileSize();
            System.out.println("uploadActionForm.getFileUpload().getFileSize() = " + uploadActionForm.getFileUpload().getFileSize());
            byte buffer[] = new byte[1024];
            try {
                BufferedInputStream bufferedInputStream = new BufferedInputStream(uploadActionForm.getFileUpload().getInputStream());
                FileOutputStream fos = new FileOutputStream("s:\\uploaded\\" + uploadActionForm.getFileUpload().getFileName());
                int read;
                while ( (read = bufferedInputStream.read(buffer,0,buffer.length)) != -1) {
                    fos.write(buffer, 0, read);
                fos.flush();
                fos.close();
                bufferedInputStream.close();
                return mapping.findForward("success");
            } catch (IOException e) {
                e.printStackTrace();
                return mapping.findForward("error");
            }catch(OutOfMemoryError o){
                o.printStackTrace();
                System.out.println("o.getMessage() " + o.getMessage());
                return mapping.findForward("error");
    UploadActionForm.java
    public class UploadActionForm extends ActionForm{
        private FormFile fileUpload;
        private byte[] fileContent;
        public FormFile getFileUpload() {
            org.apache.struts.taglib.html.FormTag _jspx_th_html_form_0;
            return fileUpload;
        public byte[] getFileContent() {
            return fileContent;
        public void setFileUpload(FormFile fileUpload) {
            this.fileUpload = fileUpload;
        public void setFileContent(byte[] fileContent) {
            this.fileContent = fileContent;
    }--Bhupendra Mahajan

    Yes, you could try using the multipart handler...
    But I have a better idea...
    Determine the maximum number of file uploads that the
    user can do at one time. I mean, you can't
    realistically have the user upload a million files at
    one time. So say the max is 20. So you create your
    action form class with 20 FormFile fields called file1
    to file20.
    Then when you dynamically create your page, you
    dynamically create the specified number of file fields
    and 1 hidden field called "totalFiles" which contains
    the number of file fields you created. This should be
    an int field in the form bean.
    Then when you do your action processing, you just loop
    thru the totalFiles... Or well, actually, you may not
    need that at all. You could just check all the
    FormFile fields and whatever ones aren't null contain
    files.But what about UploadActionForm.java[b]
    How do i have exact mapping of the HTML form in this file ??
    --[b]Bhupendra Mahajan

  • Is it possible to  add multiples dimension objects in Webi Ranking ?

    As per the project requirement we need to convert custom sqls to reporting sql in webi 3.1 sp5 .
    Is it possible to  add multiple dimension objects while applying ranking (Webi query panel ).
    Or is there any other way to achieve this feature in BO ?
    Regards,
    Pranay

    Hi ,
    There is a way if you want to apply ranking within a ranking . Below are the steps:
    First on the outer side we can use the Rank feature which is available directly
    Then use the Rank Function (=rank ()) and reset your dimension accordingly .
    This kind of Ranking is possible.
    Regards,
    Rahul

  • Is it possible, to add multiple USB devices to TC

    Is it possible, to add multiple USB devices using a hub to Time Capsule (as stated for Airport Extreme)?
    Thanks in advance.
    Stefan

    The Time Capsule is an AirPort Extreme with a built-in hard drive, so you can add multiple USB devices if you use a powered USB hub.

  • Howto add multiple files in mucow

    hi guys,
    so i'm very new at creating mucow files for muse, I have already created one called "YTPlayer" which is available on the muse addons site but now I want to
    create more complex ones...
    i'm working on creating a carousel mucow based off of a jquery plugin but I am stuck on how to let the user add multiple images files via the mucow and then
    have those files included in the code... for example if I wanted to let them add 3 image files to the carousel I could create 3 <text> parameters where they would
    specify the name of the images and then they could use the upload function of muse to upload the images and I could use something like this:
    <pageItemHTML>
    <![CDATA[
         <img src="assets/{param_image1}">
         <img src="assets/{param_image2}">
         <img src="assets/{param_image3}">
    ]]>
    </pageItemHTML>
    but of course this then limits them to 3 images only, how can I let them select many images and then specify that in the mucow code?... is this even possible?
    -thanks

    if all images have the same name following a number then you could add one text field only:
    <pageItemHTML> 
    <![CDATA[
         <img src="assets/{param_image}1">
         <img src="assets/{param_image}2">
         <img src="assets/{param_image}3">
    ]]> 
    </pageItemHTML> 
    It's not the best solution, but it works.

  • IS IT POSSIBLE TO ADD MULTIPLE ATTACHEMENTS?

    WHEN EMAILING ON IPAD, IS IT POSSIBLE TO ADD MORE THAN ONE ATTACHMENT? TWO OR MORE DOCUMENTS ON ONE EMAIL?

    The iPad requires you first to define the object you want to email and then open a send-mail page. Thus, natively you can only send one attachment. I looked at the app store and Mail2List allow sending up to six photos at once. AceMail allows sending multiple audio files and photos. I could not find anything to send more than one document.
    Also, please do not use all caps.

  • How do I add multiple files (mp3) at once?

    I just updated to iTunes 11 and I regret it. It's supposed to be easier and more convinient but it just didn't work for me. I deleted my songs from my library and now I want to add multiple new ones. But how? the only option I could see is to add file. one file! I have literally thousands of songs. Please help me.

    Fair enough.
    I started doing this before unlimited data and emails on phones was a common commodity, on my Samsung Blackjack.
    I then continued it due to its convenience. My only counter argument is this:
    Even when emails are set to immediately push, I am always notified earlier by this forwarding message (sometimes by several minutes/hours due to the fact that it is not dependent on my being connected to 4G or wifi to receive it.
    Also, to contradict snozdop's point that both methods use data and battery, I say this - when I use the forwarding method, the information comes in a pure text format and therefore uses considerably less information than an HTML and CSS rich email, with embedded images and such -also, unlimited text messages aids curve costs.
    I will, however, give this method a go. In any case, a solution to my original question would still be greatly appreciated.
    Thanks guys.

  • Is it possible to download multiple files from FTP

    Hi,
    Is it possible to download the multiple zip files from FTP.I need to download multiple files from FTP into temporary folder in my local machine. Please help me.
    Regards,
    ahamad

    Of course it is. Try it. Or, asked differently, what did you try that did not work?

  • Is it possible to add multiple contacts to Safari autocomplete for iPads used by more than one person regularly?

    If there are multiple regular users who both want to take advantage of the Safari autocomplete function for forms can you add multiple people in Settings?

    No, that's not possible.

  • How do you add multiple files to template?

    I want to add several files to the CREATE DVD template batch. I don't understand how you go about doing this. It seems to only allow one.

    Try it in reverse; just drag all of your files into the Compressor batch window; select all of them, and then drag the template you want over them.

  • Is it possible to outline multiple files in one go?

    Hi all,
    I'm new to this platform, so forgive me if I haven't posted this question in the right place. I've gone through Google as well as the FAQ section and couldn't find an answer to the question above.
    Here are some details:
    I've got 75 files that I need to outline. I know from Photoshop and other software that it is possible to create a process to resize images, for example. Is there something similar for Illustrator CS5? I've played around with Actions, but couldn't figure out if (and if, how) it is possible to get all files outlined in one go.
    Any answers are much appreciated.
    Thanks!

    do you mean create outlines from paths or text or what?
    you could make an action select all, then object > path > outline stroke, or type > create outlines (or both), then use the batch options (bottom of the drop-down menu for the Actions panel) to pick a folder to run the action on.
    maybe the batch option is all you're looking for here, not sure.

  • Possible to add multiple 'Collections' to a container

    Hello,
    In DB XML, is a 'Container' equivalent to an xquery 'Collection' ? All of the examples that I see, refer to the container when specifying the collection.
    Basically, I would like to create one Container - call in container1.dbxml Within container1, I would like to have multiple collections, collection1, collection2.
    I would then like to be able to run xqueries such as:
    count(/*) - and get a count of all the docs in both collection1 and collection2 or
    collection("collection1")/* - and get all the nodes in collection1 only
    So, bottom line question - can I add multiple collections to a container, or is a container and collection equivalent in DB XML?
    Thanks for your responses.

    IBB
    What you want to do is create a class that extends the Java XmlResolver class, and register that class with the XmlManager. In your extended class you would want to implement the following function:
    public boolean resolveCollection(XmlTransaction txn, XmlManager mgr, String uri, XmlResults result)
    So that the result argument contains all the documents in the collection specified by the uri. You will likely want to do this by querying the container for the documents for the given collection and copying the results returned by the query to the argument.
    Below is an example of an implementation of the function that resolves the collection to a single document.
    public boolean resolveCollection(XmlTransaction txn, XmlManager mgr, String uri, XmlResults result) throws XmlException {
         XmlDocument doc = mgr.createDocument();
         doc.setName(name);
         doc.setContent(content);
         XmlValue val = new XmlValue(doc);
         result.add(val);
         return true;
    Lauren Foutz

  • Possible to add Multiple Destinations on WORLD MAP?

    Can I add multiple destinations in 1 world map in imovie? Or only the Start and End location? Thanks

    You cannot have multiple destinations in a single map, but you can go from point A to point B to point C to point D, etc. You do this by putting several maps adjacent to each other. So the first map is A to B. The second is B to C. The third is C to D, etc.

  • Is it possible to upload multiple files at the same time?

    Hi folks,
    It seems pretty trivial to implement a file upload item, but is there some way to allow selection (upload) of multiple files at the same time? Seems like this has probably come up before, but I didn't find much for solutions in my search. Any links or insight would be appreciated.
    Thanks!
    -Adam vonNieda

    Thank you both for your replies.
    @Manish - That does allow for multiple file uploads without refreshing the page, but does not allow for multiple file uploads at the same time.
    @Tony - That might be the way I end up going, although I probably should have been more specific. It would be really nice it there was a way to do a mutli-file select using the control or shift button like you can with a standard file selection dialog (if you want to copy multiple files, for example). Having a separate line for each file browser means there has to be a limit on the number that can be selected at the same time.
    Has anyone implemented a method of selecting multiple files at once, and hitting an upload button once to get them into the database?
    Thanks again Manish and Tony, very helpful.
    -Adam

  • Is it possible to download multiple files as zip from Amazone S3 directly

    We need to download multiple files from Amazone S3 at a time in a zipped format. We use flex 3 and coldfusion 8 for development.

    Of course it is. Try it. Or, asked differently, what did you try that did not work?

Maybe you are looking for