Trouble when file name has spaces

In Windows XP's Windows Explorer, when I double click a .pdf file to open it the Adobe Reader comes up and then sometimes puts up a pop-up saying "There was an error opening this document. This file cannot be found". I have to click OK several times to get the pop-up to go down.
After some internet investigation I discovered if the file's path name has spaces then Adobe breaks the path into pieces at the spaces and interprets it as several file names. The advice I found on the internet was to have the launching application put double quotes around the file name.
The trouble is, in my case the launching application is Windows XP, and I don't know how to instruct it to add the double quotes.

I WANT THE PASSWORD
SAYS ANOTHER ACCOUNT WITH THE SAME ADDRESS
I WANT THE PASSWORD

Similar Messages

  • Mac File on NT server thows fnf exception when file name has special chars

    Help,
    I can get my code to work around this problem but I would like to be
    able to delete the offending file or run some logic on it but it just doesn't understand the file because of the file not found exception.
    Any suggestions ?
    Thanks in advance,
    Dan

    There are several entries in the Bug Database that sound like that. They may have been fixed in 1.4.

  • How can I find out those files whose name has space character?

    Hi
    How can I find out the files whose name has space character in a whole file system?
    Thanks
    Jerry

    thank you all
    I can use this command to find out like
    $find ./ -type f -exec ls -1 {} \; 2>/dev/null | grep " "
    ./space in name
    while, I modify above a little to find out a spcific file systems like below:
    $find /bbj* -type f -exec ls -1 {} \; 2>/dev/null | grep " "
    /bbj14/appl/oracle/prdrep/S_STATIC_TAB_05.dbf
    --while, I didn't see any space character in file name "S_STATIC_TAB_05.dbf"
    what is wrong?
    thanks

  • JavaMail breaks when attachment names have spaces.

    Hi
    I am reading mail from gmail and wants to save attachment.
    Javamail breaks when i use either getDisposition or getFileName method when attachment name has a space.
    I know its against the spec but it is breaking my code.
    Is there any work around this.
    Regards
    Saurabh

    Hi
    I am reading a gmail account and files with attachments are send by customers and most of the time attachment name have spaces.
    I already set [props.setProperty("mail.mime.parameters.strict", "false");
            props.setProperty("mail.mime.encodeeol.strict", "false");
            props.setProperty("mail.mime.decodetext.strict", "false");]
    but it still gives this exception.
    javax.mail.internet.ParseException: Expected ';', got "Screen"
         at javax.mail.internet.ParameterList.<init>(ParameterList.java:280)
         at javax.mail.internet.ContentDisposition.<init>(ContentDisposition.java:96)
         at javax.mail.internet.MimeBodyPart.getDisposition(MimeBodyPart.java:1063)
    Regards
    Saurabh

  • Can you track a form if the file name has been changed after distribution?

    I created a form in Adobe Acrobat X Pro -- I then used the distribute feature and sent the form to myself using the internal server. After testing the form, and making sure all was good, I copied the attachment from the email I received when I distributed the form to myself, and sent it to my boss (via outlook). He then changed the file name, and sent the form out to our members. Our members are completing this newly-changed document instead of the original form. They are able to "Submit The Form", and it still looks as though its coming back to me via the dialogue box. However, I have no received any responses in my original document's tracking. When I tried submitting this new form myself to see what happened, I just received an message that says "Your response is being queued for submission", but it never tells you whether the form was actually submitted or not. Is there any way that you can track this form even though the file name has been changed? And if people are submitting their forms to me, where are they going?
    Please help!
    thanks,
    desiree

    I understand that you don't want to redo all the linking with the markers. You can try following (make a copy of your project first to be safe) :
    - close your project and quit DVDSP
    - move your old asset, and replace it with the new one
    - reopen your project
    A warning message should tell you that this asset has changed, but your marker will remain at old position. If the asset length are not the same, old length information will be used by DVDSP. To correct this, delete the asset from the timeline, and drop it back to the timeline.
    Now you just have to move the marker to the right position.

  • File download - file name with spaces

    I use the resp.setHeader("Content-disposition", "attachment; filename="+filename) method. it works. However, when the file name contains spaces the dowloaded file's name is only the part of the string up to the space, nothing more. Is there a way to deal with it? I'm replacing spaces for '_' at the moment but that's not exactly what I want.
    Thanks.

    Is the filename put in between quotes?
    resp.setHeader("Content-disposition", "attachment; filename=\"" + filename + "\"")

  • Oracle Text Index  - Trailing Search when the String has spaces

    Hi Am trying to use CONTAINS to tune a trailing LIKE search.  But it's not working when the string has spaces in between them
    For e.g in say if table person has column name which has following values
    JOHN
    FRED JOHNSON
    JOHN ROBERTS
    select * from person where name like 'JOHN%'
    Above query will give JOHN and JOHN ROBERTS. If i use CONTAINS As below
    select * from person where CONTAINS(name,'JOHN%',1) > 0
    It brings back all three records. If i remove spaces in column itself, its working bit if i try to remove spaces in Query, i am getting a Text error as i have Text index only on the name column.  I would like to know is it possible to use CONTAINS but get same result set on trailing search as how a normal LIKE will do.
    Below is how i did Index creation
    create index txt_idx1 on person (name)
    indextype is ctxsys.context
    parameters('DATASTORE ctxsys.default_datastore');

    You could use some method, like a multi_column_datastore or user_datastore to append some specific starting characters, then include those in your search, as shown below.
    SCOTT@orcl12c> CREATE TABLE person
      2    (name  VARCHAR2(60))
      3  /
    Table created.
    SCOTT@orcl12c> INSERT ALL
      2  INTO person VALUES ('JOHN')
      3  INTO person VALUES ('FRED JOHNSON')
      4  INTO person VALUES ('JOHN ROBERTS')
      5  SELECT * FROM DUAL
      6  /
    3 rows created.
    SCOTT@orcl12c> BEGIN
      2    CTX_DDL.CREATE_PREFERENCE ('test_ds', 'MULTI_COLUMN_DATASTORE');
      3    CTX_DDL.SET_ATTRIBUTE ('test_ds', 'COLUMNS', '''start ''||name||'' end'' name');
      4  END;
      5  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl12c> create index txt_idx1 on person (name)
      2  indextype is ctxsys.context
      3  parameters('DATASTORE test_ds')
      4  /
    Index created.
    SCOTT@orcl12c> select * from person where CONTAINS(name,'start JOHN%',1) > 0
      2  /
    NAME
    JOHN
    JOHN ROBERTS
    2 rows selected.
    SCOTT@orcl12c>

  • Issue with rmi connection when server name has underscore("_")

    Hi
    I am getting the following error when server name has underscore("_"). And jserver is not coming up. can anyone please help me with this
    ERROR 02/11 17:19:42 jserver [main] 104021
    java.net.MalformedURLException: invalid authority: rmi://TP_BMCPOC:1099/server
    at java.rmi.Naming.intParseURL(Naming.java:313)
    at java.rmi.Naming.parseURL(Naming.java:220)
    at java.rmi.Naming.rebind(Naming.java:154)
    Looks liek Naming.rebind has some issue. is there any other alternative to register??
    Thanks
    anitha

    [http://en.wikipedia.org/wiki/Hostname#Restrictions_on_valid_host_names]

  • Document library: File name with spaces at EOF

    I noticed a strange issue with uploading files with space at end of file (example "ABC  .xlsx"). Such files are allowed to be uploaded for the first time but when the end user (with contribute permission) tries to upload the same file again
    (overwrite) then it uploads the file and goes to the next dialog box where properties for the form is collected (EditForm) and then when user tries to hit save, he gets "Sorry this site is not shared with you" error. The owners (with Full control
    permission) get the error message that the file needs to be renamed. 
    This does not happen with files having proper names. The files are automatically overwritten as expected.
    Is it a SharePoint bug or am I missing something ?

    Hi Prakash,
    When we upload a document which contains spaces at the end of the file name, then SharePoint will trim out the spaces in the Edit Item Form, so the name for this document should be “ABC.xlsx”.
    When we re-upload the document to SharePoint, because of that extra space it sees the filename(ABC  .xlsx) as different to the existing document (ABC.xlsx) so it adds it as a new document.
    And in the edit item form, the space has been trimmed out. Because there is already a document with that filename in the document library, it throws the error.
    So this issue is by design that SharePoint uploads the document first and then edit the properties of the document.
    For more details, please refer to the link below:
    https://discoverlars.wordpress.com/2012/10/27/sharepoint-doesnt-overwrite-a-document-with-the-same-name-but-creates-duplicates/
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • Error in serialization when file name is dynamic

    Hello there,
    I am utilizing serialization functionality of Java to Save the work done using the application that I have developed. When the user goes to File -> Save, the application calls the following function:
    public void save()
    try{
    System.out.println("before FOS");
    FileOutputStream f_out = new FileOutputStream("*save.data*");
    System.out.println("after FOS");
    ObjectOutputStream out = new ObjectOutputStream (f_out);
    System.out.println("after OOS");
    out.writeObject(*myPanel*);
    //myPanel is an instance of JPanel which contains all the sketches done by the user.
    out.close();
    f_out.close();
    System.out.println("after writeObject");
    catch(Exception e)
    System.out.println("Exception in Save function");
    This particular code runs fine but the problem is that the name of the serialized file is hard coded which is, "save.data" as highlighted in bold in the above code.
    So I added the JFileChooser component to enable the user to type in the file name that he/she wants. The following is the amended code:
    public void save()
    JFileChooser chooserSave = new JFileChooser();
    chooserSave.setCurrentDirectory(new File ("."));
    returnVal2 = chooserSave.showSaveDialog(myPanel);
    File fileName = chooserSave.getSelectedFile();
    System.out.println("filename : " + fileName);
    if(returnVal2 == JFileChooser.APPROVE_OPTION)
    try{
    System.out.println("before FOS");
    FileOutputStream f_out = new FileOutputStream(fileName);
    System.out.println("after FOS");
    ObjectOutputStream out = new ObjectOutputStream (f_out);
    System.out.println("after OOS");
    out.writeObject(myPanel);
    out.close();
    f_out.close();
    System.out.println("after writeObject");
    catch(Exception e)
    System.out.println("Exception in Save function");
    With the amended code however, the programs throws exception after bold line which means writeObject method could not be performed.
    Could anyone kindly advice what could be wrong? I have made almost all the possible amendments to the best of my knowledge but to no avail.
    Thank you very much.
    Note: This question has been posted earlier in java-forums.org @ http://www.java-forums.org/advanced-java/20147-serialization.html

    You shouldn't Serialize swing components - draw the sketches to images or save them as their own objects and read them back in to populate the JPanel.
    The reason you are suddenly getting the Exception is because the JFileChooser is referenced within the JPanel while you are saving it - and that particular partof the JFileChooser is not Serializable.
    As was said before, you shouldn't Serialize swing components (the API specifies that swing serialized objects may not be compatible with future releases).

  • QT v10.0 "save for web" creates file names with spaces?

    I find it strange that the additional exported files from "save for web" (iPhone, etc) auto exports files with spaces in the file names. Not only that, but changing the file names breaks the javascript.
    I work on a server that denies permission to files with spaces in the file names. I know it's a bit archaic - but it's also a long standing tennent of "good HTML" to creates files with a hyphen or underscore instead of a space.
    Is this something that can be addressed in the next update?

    If your using cs5 or cs6 you might try Image Processor Pro which seems to use underscores
    and has a save for web option.
    Dr Browns Services 2.31
    http://www.russellbrown.com/scripts.html

  • File name with spaces

    Hi,
      I am unable to upload files with file name having blank spaces to cFolders 4.0.
    Kindly help me to resolve this issue.
    Regards,
    Shynu John

    Hi Shynu,
    Please refer the following note.
    Note 959280 - File names with special characters are uploaded incorrectly.
    Regards,
    Pavan

  • Al11 file name with spaces

    Hello all
    I'm trying to create file on server that have spaces, but name is being cut. For example instead of creating file '/usr/tmp/file name.txt'  I'm getting  '/ust/tmp/file'. Does anybody know what cause this and how to resolve this problem?

    REPORT  ZB_TEST4.
    start-of-selection.
    OPEN DATASET '/tmp/File1 name.txt'.
    TRANSFER 'some data' TO '/tmp/File1 name.txt'.
    CLOSE DATASET '/tmp/File1 name.txt'.
    WRITE 'end'.

  • File name has .cr2 and .jpg

    I'm exporting jpegs from .cr2 (raw) files. When I export out the version names as a .jpg the file name keeps .cr2 and adds .jpg. So my exporte file name is something like 001-HP8Q7590.CR2.jpg
    This is happening on 3 of our computers, but not the 4th. What's up?
    (the 001 at the beginning is a sequence that I add after editing the files)

    An update:
    I spoke with Aperture support. They suggested that I delete the Aperture preferences. After doing that the previously imported files still display incorrectly. (When looking at the File Info both the version name and the file name have the .CR2 extention which means Aperture thinks that .CR2 is part of the file name).
    However, when I imported new raw files 3 different ways, the files display correctly under the File View. I imported direct from a CF card to Aperture, I used Photo Mechanic (my normal workflow) with IPTC Stationary Pad and without. All three versions of the import the files worked okay. So it was probably the preferences in Aperture were corrupted and it only fixed future imports.

  • Column name has spaces

    Is there any way to make OBIEE handle a table which has column names with spaces?
    Besides creating a view with aliases on that table, of course?
    I suppose, it's about making a queries where all column names are quoted.

    Well, this is exactly how I created all those tables. They have tens of columns like that, unfortunately, that was a requirement.
    I am completely new to OBIEE tool, but AFAIK it maps physical tables to some business layers and then it generates queries to the database depending on user's actions.
    So my question is: is it possible to configure OBIEE server so that all queries sent to DB have column names in quotes, regardless of particular column name?
    It's about total of 1000 columns with such names spread over 80 tables, so I am looking for easy way to make it work with those tables...

Maybe you are looking for

  • I am trying to manage my website, why can't I cut and paste information or even url?

    I have only had this imac for 24 hours, it doesnt seem to have basic functions like cut and past even using the commands control c and V.  I run 2 websites and its completely frustrating, can anyone help please... otherwise its going back...

  • Raise an Event in Redwood after a Commit to an External Oracle DB?

    Hello Netweaver Community / Redwood specific, I am at customer site and have been presented with the following scenario and subsequent question... The scenario is that there is a 3rd party product (powerBuilder program / windows executable) that is u

  • Songs wont drag

    I can't drag any songs to new playlist folder or any folder for that matter. What's the matter? Can it be fixed?

  • Problems with Adobe Content Viewer for V30 Folios

    Is anyone else experiencing problems viewing V30 folios on the Adobe Content Viewer app for ipad and iphone. It asks me to download a newer version of the App but as far as I can see I am using the newest version (3.4.5)

  • SQL-Oracle(PrepareStatement)

    Hello. I got an SQL statement which will be executed under Oracle DB. The following statement works fine for(;;) sqlString.append("SELECT \"" + getColumnName(ic,date)+ "\"" +"\nFROM report_level_one_" + selectDate + "\nWHERE \"NDR/NDE\" = '" + getVal