How to retrieve a sent file

Hi
I recently sent a file to a friend. Is there a way to retrieve that file?
Thanks,
Mike

If you have been backing up your iPad/iPhone to your computer with iTunes, the file will be found in iTunes when you connect and choose your device. It's in the Apps tab > File Sharing > Adobe Reader.
Otherwise, you'll have to get the PDF file from the source from which you originally obtained it (email, website, or your computer).

Similar Messages

  • How to retrieve a text file

    I am doing an assignment where I am running two "identical" servers on different computers (same network), so that reliability is increased. I have to take into consideration if one were to go down, how do we update the lost information. Right now I have my program saving critical data to a text file, and I am trying to find a way to retrieve that text file. I am writing in java 1.5. thanks in advance.
    Fred

    how do I implement a database? My main problem here is that if say one server is down and one is up, and a user updates information on the server, when the first one comes back up, it must also be updated. the system consists of
    client-->frontendserver (via java sockets)
    then frontendserver-->two servers (via Java RMI)
    I can assume the frontendserver will not crash, but I am not allowed to store data on it. Thanks for the help so far

  • TS3899 How to cancel a sent file that seems too big to be sent - but keeps trying thus draining the battery?

    How do I cancel a file that is trying to be sent but seems too big to be sent - it keeps trying to send andconstantly drains the battery.
    Sandy

    Try force-closing Mail: double-tap the home button, locate Mail in the list at the bottom, tap and hold it until it wiggles, tap to close it, finish by tapping the home button.  Then go the you email provider's webmail site (such as iCloud.com for @me.com mail), log into your account and delete any emails you find in your Drafts folder.  Then open Mail again and see if it stopped trying to send.

  • How to retrieve backed up files from my computer

    i have voice recordings and pictures that are in my backed up folder on my computer, but my phone is backed up to two days ago.  how do i get those files that are on my computer onto my phone??

    the backup that is on my computer is an itunes backup and the files are encrypted.  I can't see what the files are.  This is very frustrating.  When I restore a backup it only does the latest backup.  What do I do if I want a backup from a few months ago that has the files that I am looking for?  What's the point in a backup if you can't get those files?

  • How to retrieve data (xml file) using jsp

    I am a newbie to xml. I have decided to store my information in the xml file. may I know how can I retrieve my information from the xml file?
    Thanx in advance.

    I am a newbie to xml. I have decided to store my
    information in the xml file. may I know how can I
    retrieve my information from the xml file?
    Thanx in advance.You can get the information from the XML file using one of the parsers available, such as Xerces http://xml.apache.org, and JDOM as an API.
    Using this you have the option of having a SAXParser or a DOMParser.
    SAX (Simple API for XML) is an event based parser, so if you know the XML structure, and need to find a certain element, you can just look for the element name,and retrieve the value of the element, it's attributes and its children.
    DOM(Document Object Model)represents the XML as a tree, but uses more resources as it stores the entire tree in memory. But it is good in that you can traverse the whole tree.
    JDOM would be a good idea too. If you download this, you can use it's API, which is very good, that will use the parser on your system (Xerces). I would definately recommend JDOM.

  • How we retrieve the sent mails , drafts from mail

    I have a problem with retrieving sent mails, drafts and all other from mail.
    I am succeded in retrieving mails from inbox. please give me code for that
    this my code for retrieving inbox from mail.
    <%@page import="java.util.*,java.io.*,javax.mail.*,javax.mail.internet.*,javax.mail.search.*,javax.activation.*"%>
         <TABLE align="center">
         <tr>
         <td>
    <%
    String host = "pop.gmail.com";
              HttpSession hs=request.getSession(true);
    final String user=(String)hs.getValue("usid");
    final String password=(String)hs.getValue("pwd");
         String subjectSubstringToSearch = "";     
    try {
                        Properties props=new Properties();
                   props.setProperty("mail.pop3.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
    props.setProperty("mail.pop3.socketFactory.fallback", "false");
    props.setProperty("mail.pop3.port", "995");
    props.setProperty("mail.pop3.socketFactory.port", "995");
    Session session1 = Session.getInstance(props,new javax.mail.Authenticator() {
    protected PasswordAuthentication getPasswordAuthentication() {
    return new PasswordAuthentication(user,password);
    Store store = session1.getStore("pop3");
    store.connect(host, user, password);
    Folder fldr = store.getFolder("INBOX");
    fldr.open(Folder.READ_WRITE);
    int count = fldr.getMessageCount();
    out.println(count + " total messages");
                        %>
                        </td>
                        </tr>
                        </table>
                        <br>
                        <table border="1">
                        <%
    for(int i = 1; i <= count; i++) {
    Message m = fldr.getMessage(i);
                             %>
                        <tr>
                             <%
    Date date = m.getSentDate();
    Address [] from = m.getFrom();
    String subj = m.getSubject();
    String mimeType = m.getContentType();
                             %>
    <td size="35"><%out.print(date);%></td>
    <td size="35">     <%out.print(from[0]);%></td>
    <td size="35"><%out.print(subj);%></td>
    <%}%>
                        </tr>
                        <tr>
                        <td>
                        <%
    String pattern = subjectSubstringToSearch;
    SubjectTerm st = new SubjectTerm(pattern);
    Message [] found = fldr.search(st);
    out.println(found.length +
    " messages matched Subject pattern \"" +
    pattern + "\"");
    for (int i = 0; i < found.length; i++) {
    Message m = found;
    Date date = m.getSentDate();
    Address [] from = m.getFrom();
    String subj = m.getSubject();
    String mimeType = m.getContentType();
    out.println(date + "\t" + from[0] + "\t" +
    subj + "\t");
                             %>
                             </td>
                             <tr>
                             <td>
                             <%
                             out.println(mimeType);
    %>
                             </td>
                        <td>
                             <%
    Object o = m.getContent();
    if (o instanceof String) {
    out.println("**This is a String Message**");
    out.println((String)o);
    else if (o instanceof Multipart) {
    out.print("**This is a Multipart Message. ");
    Multipart mp = (Multipart)o;
    int count3 = mp.getCount();
                                  %>
                             </td>
                        <td>
                             <%
    out.println("It has " + count3 +" BodyParts in it**");
    for (int j = 0; j < count3; j++) {
    BodyPart b = mp.getBodyPart(j);
    String mimeType2 = b.getContentType();
                                       %>
                             </td>
                        <td>
                             <%
    out.println( "BodyPart " + (j + 1) +" is of MimeType " + mimeType);
    %>
                             </td>
                        <td>
                             <%
    Object o2 = b.getContent();
    if (o2 instanceof String) {
    out.println("**This is a String BodyPart**");
    out.println((String)o2);
    else if (o2 instanceof Multipart) {
                                            %>
                             </td>
                        <td>
                             <%
    out.print(
    "**This BodyPart is a nested Multipart. ");
    Multipart mp2 = (Multipart)o2;
    int count2 = mp2.getCount();
                                            %>
                             </td>
                        <td>
                             <%
    out.println("It has " + count2 +"further BodyParts in it**");
    else if (o2 instanceof InputStream) {
                                            %>
                             </td>
                        <td>
                             <%
    out.println("**This is an InputStream BodyPart**");
    else if (o instanceof InputStream) {
                                  %>
                             </td>
                        <td>
                             <%
    out.println("**This is an InputStream message**");
    InputStream is = (InputStream)o;
    int c;
    while ((c = is.read()) != -1) {
                                       %>
                             </td>
                        <td>
                             <%
    out.write(c);
    fldr.close(true);
    store.close();
    catch (MessagingException mex) {
    mex.printStackTrace();
    catch (IOException ioex) {
    ioex.printStackTrace();
    %>
    </td>
    </tr>
    </table>

    Ramesh,
    To paraphrase [url http://asktom.oracle.com]Tom Kyte, "holy unreadable code, Batman!"
    Code is much more readable if you put "[ code ]" and "[ /code ]" (without the spaces and quotes) around your code samples.
    Seems to me this would be a function of how the email server you are connecting to works - perhaps there is a folder called "Sent Items" or "Drafts" that you can use in this line (note the code tags ;) :
    Folder fldr = store.getFolder("INBOX");Not sure if this is possible via POP, but it is in IMAP. Hint: use google and search for:
    javax.mail "sent items"
    you'll get some helpful information. Nothing to do with JDeveloper here.
    John

  • How to retrieve a 'sent' e-mail from the server?

    One of my users has gone out of town, left her laptop at home, and now (of course) desperately needs me to retrieve an e-mail she sent to a customer last night. It's a POP account, what would be the best way for me to locate this sent message on the server so I can forward it to another person in our company? (I do know the approximate time it was sent, and the recipient's name).
    Suggestions greatly appreciated! Many thanks--

    Tony,
    leaving messages on the server when using POP3 will work for received messages. Sent messages still don't get stored by the mail client when using POP3 (unless you have used an option like "copy to self" or similar).
    Even if POP3 and IMAP are enabled on the server, behaviour is unfortunately determined by the client.
    An IMAP client considers all folders remote (unless told otherwise), a POP3 client considers them local.
    So for what has happened in the past there is no solution. For the future he can either use IMAP or tell the POP3 client to leave messages on the server AND use an option like BCC to self.
    Alex

  • How to retrieve back-up file

    Sequence of events -
    I downloaded itunes two weeks ago in-order to download the photo & video file into my laptop computer (Window 7 OS)
    I updated my iphone 3 last Sat at about 2.30pm
    Updated all the softwares & sync the phone - ok and able to download all the data into the computer. using user name #1 Completed about 4pm
    Next connect my iphone 4 to the laptop
    Does exactly the same with iphone 4 & does the sync at about 4.15pm with another user name #2
    Nothing happens. My Computer does not able to detct the iphone 4
    Try another 3 times 7 again, no devices detected in iphone 4
    Notice that the data in the iphone 3 appears in the iphone 4 (even with different user name)
    The itunes detect the iphone 4 but not the computer (no device found)
    Use the Restore button several occasions and the last attempt at about 6.55pm and the computer not able to find the iphone 4
    Contacted Apple Technical support in Singapore to assist to restore the previous iphone 4 data prior to sync.
    Only found the last back-up file at 6.55pm.
    Try several times to back-up with the 6.55pm file but not successful to retrieve the previous iphone 4 data.
    Up to now, the laptop cannot found the iphone 4 but the itunes is able to detect iphone 4.
    ## I need assistance to trace back the previous data and restore back onto the iphone 4 prior to the sync process!!!
    ### I am not able to find the hidden back-up or hidden file on my laptop inorder to trace the back-up file history earlier than the 6.55 pm back-up file.
    Serious help needed.

    stewarts2 wrote:
    Time machine failed in progress as my hard drive failed.  I have an "in progress" file on my external harddrive that is about 160 GB.  I would like to try and load this back onto a new harddrive.  Is this possible?  Migration assistant is not responsive nor does Time Machine recognize the external drive when connected.
    No, neither the "Star Wars" display nor Migration Assistant can deal with a partial backup. 
    And it sounds like the file system was damaged when your internal HD failed.     Try to repair the backups per #A5 in Time Machine - Troubleshooting.
    You'll have to try to drag & drop whatever you can from the ".inProgress" package to the corresponding places on your system.  It looks like a file, but is really a special kind of folder.  Right-click it in the Finder and select Show Package Contents.  You'll find a duplicate of the most or all of the folder structure of your Mac.  You'll have some of the actual data, but not all of it.
    Skip all the top-level folders except Users. Inside it will be your home folder, containing all the default sub-folders (Desktop, Documents, Pictures, etc.).  You can't copy the whole home folder, or entire default sub-folders, since the ones on your new HD are protected.  But you should be able to copy the contents.
    You can copy some "simple" apps (things you just dropped into Applications) from Applications, but "complex" ones (typically the ones that came with their own installers) will have to be reinstalled from their original discs. You'll also have to re-enter any serial numbers or purchase keys.

  • How to retrieve a local file from a portal report.

    Hi,
    I need to access a local htm file from my local directory. I stored the filename in
    a table. And I built a portal report to select the filename from the table. The filename
    in the report will be link to a procedure that I created to pass the filename. The
    procedure code is as follow:
    (v_filename in varchar2) IS
    url varchar2(100);
    BEGIN
    url := 'uploaddoc/'&#0124; &#0124;v_filename;
    portal30.wwv_redirect.url(p_url =>url);
    END;
    Then in the httpd.conf file, I put in an alias like this:
    I put an alias in the httpd.conf file like this:
    Alias /uploaddoc/ "C:\My_Data\uploaddoc/"
    I stopped the http server and restarted it after I made the changes.
    When I run the report, I click on the filename link: in my example,it is:
    internal_portal_faq, the filename is passed to the procedure that I created.
    But I got the following error message on the browser:
    No DAD configuration Found
    DAD name:
    PROCEDURE : internal_portal_faq
    URL : http://localhost:80/pls/portal30/uploaddoc/internal_portal_faq
    I am running on version 3.07 on NT on my laptop.
    Any idea what I did wrong?
    P.S. I don't want to upload the file using a portal form into the blob field.
    Thanks;
    Kelly.
    null

    Hi,
    I found out a way to do this myself. If anyone is interested in that, just drop me an email.
    Kelly.
    null

  • How to retrieve a deleted file

    I accidentally deleted a file (.docx) that I had saved on my desktop, and then emptied my trash.  Is it possible to get it back???

    Yes as long as you didn't use secure erase or have Filevualt enabled, but you have to do this right away as the area it's taking up has been allocated for overwriting. Works only for hard drives and it will cost about $200 or so for the drive and software.
    Create a data recovery, undelete boot drive
    Better to have backups of your data in case something like this occurs or your entire computer dies.
    Most commonly used backup methods
    There is "undelete" type software if you install it will allow the termporary recovery of deleted files in case of accidents, search MacUpdate.com for it, however it has to be installed before the accidentail deletion occurs. It's worthless after the fact.

  • How to Retrieve Deleted Mail (Mailbox accidentally deleted)

    I accidentally deleted an email account (using MacMail) and lost all of the Sent mail from that account. I created a new account with the same information (except a new server), and the old incoming mail is there, but not the Sent mail. Any idea how to retrieve the Sent mail?

    Deleting a mail account causes all your mail stored in that account’s mailboxes to be removed from the computer as well, and you were warned that this would happen by the following alert:
    Remove Account
    Are you sure you want to remove the <AccountType> account "<AccountName>"?
    This will permanently delete the account setup information, mailboxes, and messages from your computer. Messages stored on the mail server will not be affected.For IMAP-type accounts, this is not a problem because mail is stored on the server. If you deleted a POP account, however, your mail has been wiped out from the computer, not just moved somewhere.
    To prevent that from happening, you should have moved your mail to custom “On My Mac” mailboxes instead of leaving it in the account’s mailboxes. Actually, using the account’s Inbox and Sent mailboxes for archiving purposes is a bad idea regardless.
    If the POP account was configured to leave the messages on the server for some time, setting up the account again would cause any messages still on the server to be downloaded again, just like for IMAP accounts, but this would only work for received mail that has not yet been removed from the server.
    If the messages are not on the server and you don’t have a backup (which you should have made before doing something like that), you may try to salvage as many deleted .emlx files as possible with a data recovery tool such as Data Rescue II or FileSalvage (the files to be recovered would be different in the case of Mail 1.x). Of these, the only one I know for sure that can currently recover deleted .emlx files is FileSalvage. Stop using the computer right now if you want to try that, as anything you do with it may cause the deleted files to be overwritten.

  • Xgrid: How to retrieve results before the job ends?

    Hello everybody,
    I am using Xgrid and I would like to know how to retrieve the output files before the job ends (this is really important for my activity).
    Indeed, from my own experience and from what I have read in the tutos (http://www.macresearch.org/thexgrid_tutorials_part_i_xgridbasics), it seems that the job must be done to get the output files. To "solve" the problem, I currently write to the standard output, which can be retrieved while the job is running by using the option "-job results". But of course, this is far from convenient...
    Any hint?
    Thanks.

    Dear Pavan,
    thank you so much for your reply. I have further questions.
    Most of the mentioned reports and transactions do not produce a table as a result, but some other result like a old fashioned list output. Just call reports RSTPTEST or SDCCHECK, or transaction ST02 to check this. Can you tell how to retrieve such results?
    Regarding the Web Service, since we need this in some 4000 systems with different NW levels from 4.6C through 7.40, we need some functionality which is already existing in the systems. Is there anything like this available?
    Regards,
    Joachim

  • How to retrieve the imges from Portal

    Hi
    How to retrieve an image file in Portal application (using AbstractComponent) from any location and store it into the KM.

    Hi Kasturi,
    please specify your question much more in detail:
    From where do you want to retrieve the image? From the client? From within you PAR strucure? Do you have technical problems retrieving it?
    ... Or do you have technical problems storing it within KM?
    Best regards
    Detlev
    PS: The correct forum would have been EP Dev or EP KM, depending on the question details...

  • Review sent files

    How do I review sent files?

    Good day,
    I'm not really sure what you mean?  How are you sending your files?  With a bit more detail, perhaps I can answer your question or at least point you in the right direction.
    Kind regards,
    David
    Acrobat Community Manager
    Adobe Systems

  • I have sent a file to the trash bin. When I come to empty the trash bin everything goes out except this one particular file and I get a note saying the file is 'in use' but it is not. How can I delete this file from trash?

    I have a Macbook Pro with OS X Lion 10.7.2. I have sent a work file to the trash bin along with many other files. When I empty the trash this one particular file remains and I get a message that this file is still in use. I have tried returning the file to my documents, opening it, closing it and then sending it to trash and again I try to empty trash but the same message comes up - Q - How can I trash this file permanently?

    First just try logging out and back in.  Whatever is holding on to it may not be running after the logout thus freeing it so you can trash it after logging back in.
    You might also try Trash It!
    Lastly, look at the following for suggestions:
    The X Lab: Solving Trash Problems

Maybe you are looking for

  • IPod Classic will not properly sync

    Hey everybody. I'm really hoping that somebody could help me out with this, as I am getting rather frustrated with it. My iPod Classic 120GB will not properly sync with iTunes on Windows 7. When I plug my iPod into my computer, I get the typical "Sca

  • New Ipod user, please help

    Hello everyone, i recently got a 30gb ipod video and i am really enjoying it. although the video portion is kind of odd. Podcasts are no problem, but when it comes to dvd's or just movies stored on my computer there seems to be a lot to choose from.

  • (Layering Issues) Transparent Terminal, Part of desktop.

    I'm aware there is a wiki post about this, and I will get to that. I've been trying to run a terminal as part of my desktop, and I've run into a bit of annoyance. So far I have tried: Gnome-Terminal + Devilspie (From the wiki, did not work)   This fa

  • File to IDOC- Status 51:Application document not posted

    Hi Experts, I'm doing a File to IDOC scenario. The Idoc is getting added and then it is trying to post it to the application but i get the error saying that "Fill all required fields SAPMF02D 0111 ADDR1_DATA-COUNTRY". The idoc type i'm using here is

  • Any idea when we will get support for Java 7.5 in Safari?

    I'm in school for a degree in software engineering and Java is a big part of it.  As a regular Mac user who uses Safari as his main browser, it's disappointing that adoption of the latest Java versions in Safari seem to be lacking.  Is there any way