Filelist illegal characters

using LabVIEW 7.1 I want to list and read several files in a certain directory.
I want to recursively search and read these files starting  from a root-directory,
however the directory-path at some point contains illegal characters, probably because the data is originating from Japan.
Now the recursive filelisting is not able to look beyond that part of the directory.
Windows displays these chars as 3 square's, and Labview displays them as 3 question marks, and generates a error.
I could ofcourse manually rename the illegal chars, but since intent to analyse lots of these files, doing a manual rename would be too much work.
Does anyone know a solution for this problem ?? 
Thanks in advance ,
René

ramekers wrote:
I tried the recursive file-lister of LabVIEW 8.5 (on windows2000) and this gave me the same errors,
not being able to read past these characters.
Now I am trying to locate a "freeware" program to remove these characters recursively from the names,
leaving the rest intact. Couldn't find anything yet ...
René
You could experiment with the command line in Windows. Not sure if the command line will support such file names at all but if it goes bad there, then you are indeed in deep trouble. Try to start a command line and do a dir command in such a directory. Then try to do a rename on such a file. It might work.
I doubt there is a GUI application that does specifically do this task, so you may have to resort to a batch file script doing it on the command line if the above experiment shows you that this is possible at all.
Rolf Kalbermatter
Rolf Kalbermatter
CIT Engineering Netherlands
a division of Test & Measurement Solutions

Similar Messages

  • Cannot insert Captivate Demo - filename contains illegal characters

    RoboHelp HTML v8 on XPpro. Captivate v4.
    I have created a simple Captivate v4 application demo and published to SWF.
    In my RHhtmlv8 project, I create a new topic, and choose Insert > Adobe Captivate Demo.
    The Insert dialog allows me to select my SWF file. It shows it in the Insert dialog and starts to play it.
    No matter what my SWF filename is (e.g. abc.swf, video1.swf, etc.), when I click the OK button in the Insert dialog, I get the error:
    'Unable to rename file, "abc.swf". The filename contains illegal characters.'
    I have searched the forums here and find no solution.
    How do you get support from this company? I went to the support link and it only showed Captivate as an option, even though I have a valid license for RH8 and have registered it. Yet - for 2 days now, I have not heard back from any support via that mechanism.
    Jeff

    Hi Jeff
    When you attempt to insert the demo, by chance do you still have the project open in the Captivate editor? If so, you likely need to close it there before attempting to insert into RoboHelp. I've seen all manner of weirdness with this.
    Another thing that seems to have happened recently that is worth looking at. When you Published your Captivate demo, did you Publish as AS2 or AS3? (For those that may wonder, AS refers to ActionScript. Similar to JavaScript and is the Flash programming language.)
    I've begun to notice issues with inserting Captivate content where I have published as AS3.
    Let us know... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Insert 'illegal' characters into file name for print label?

    Hey all (Happy New Year)
    I actually see some people here who helped me with this originally so many years ago (hi 'x'). Any way, I'm using this .js file to annotate aerial imagery prior to printing, and I know just enough about scripting to make changes to the basic layout as needs arise - until now. A new rather anal retentive mgr doesn't like substitutions I've made for a few 'illegal' characters that windows doesn't allow in file names. For example, the file name used for the annotation is:
    001    0003    1in = 660ft    CFL 154_074    01-01014   503-013.tif
    But Mr. mgr doesn't like the in, the ft and the use of the _ instead of a period (.) so what I need is a modification that goes something like (and note I DO NOT CODE, so stop laughing) -
    "look for in and replace with ", look for ft and replace with ' and look for _ and replace with , " so the final annotation written to the image is:
    001    0003    1" = 660'    CFL 154.074    01-01014   503-013.tif
    My current .js is below, I'd really appreciate any assistance. Thanks! TLL
    // CREATE NEW CANVAS W/SPACE ON TOP
    var deltaW = 0; // add 'N' pixels to the width
    var deltaH = 150; // add 'N' pixels to the height
    var anchor = AnchorPosition.BOTTOMCENTER; // anchor point for canvas resize
    // SET FONT TYPE AND SIZE - use GetFontName.js to get exact name
    var fontName = "ArialMT";
    var fontSize = 18;
       // Check if a document is open
       if ( documents.length > 0 ) {
       var originalRulerUnits = preferences.rulerUnits;
       preferences.rulerUnits = Units.PIXELS;
       try {
         var docRef = activeDocument;
         docRef.resizeCanvas(docRef.width + deltaW, docRef.height + deltaH, anchor);
       // Create a text layer at the front
       var myLayerRef = docRef.artLayers.add();
       myLayerRef.kind = LayerKind.TEXT;
       myLayerRef.name = "Filename";
       var myTextRef = myLayerRef.textItem;
       // ADD FILE EXTENSION, change the n to y below
       var ShowExtension = "n";
       myTextRef.size = fontSize;
       myTextRef.font = fontName;
    // SET TEXT COLOR in RGB values
    var newColor = new SolidColor();
        newColor.rgb.red = 0;
        newColor.rgb.green = 0;
        newColor.rgb.blue = 0;
        myTextRef.color = newColor;
    // SET POSITION OF TEXT - PIXELS from left first, then from top.
    myTextRef.position = new Array( 30,110);
        // Set the Blend Mode of the Text Layer. The name must be in CAPITALS
        // ie change NORMAL to DIFFERENCE.
        myLayerRef.blendMode = BlendMode.NORMAL;
        // select opacity in percentage
        myLayerRef.opacity = 100;
        // The following code strips the extension and writes tha text layer.
        // fname = file name only
        //use extension if set
        if ( ShowExtension == "y" ) {
           fname = docRef.name;
         } else {
           di=(docRef.name).indexOf(".");
           fname = (docRef.name).substr(0, di);
         myTextRef.contents = fname;
         // docRef.flatten("n");
       } catch( e ) {
         // An error occurred. Restore ruler units, then propagate the error back
         // to the user
         preferences.rulerUnits = originalRulerUnits;
         throw e;
       // Everything went Ok. Restore ruler units
       preferences.rulerUnits = originalRulerUnits;
    }  else {
       alert( "You must have a document open to add the filename!" );

    I did some quick testing and here is what I have seen.
    I went into a cygwin shell and successfully did this:
    $ touch t\"est\'t.jpg
    $ ls t\"*
    t"est't.jpg
    This means that the underlying file system (NTFS) is able to correctly encode both the ' and " characters, at least as far as cygwin is concerned.
    However, from the Windows command line and Explorer point of view, the ' is OK but the " is not. The characters /\"*?<>:| can't be used in file names in Win. This means you can get the ' and . characters working but not the " character.
    From the js side, the code would look like:
    var x = "001    0003    1in = 660ft    CFL 154_074    01-01014   503-013.tif";
    var str = x.replace(/in/, '"').replace(/ft/, "'").replace(/_/, '.');
    alert(str);
    Which displays
    001    0003    1" = 660'    CFL 154.074    01-01014   503-013.tif
    The string stuff is easy, but while you can save a file with ' and . you can't use " via js. You can't even do it using the PS UI manually.
    I've tested and verified this. Let Mr. Mgr know that it is not possible to completely comply with his requests. Unless, of course, you upgrade to OS X : )
    -X

  • Illegal Characters Newly found in RH8 Project

    Hello,
    I need some help. I opened my RH7 project in RH8 for the first time, and received error messages complaining of file names having illegal characters and I am unable to import ANYTHING (Master pages, images, HTML files, etc.) because the items have illegal characters.
    Let me say that I've never had problems like this using RH7, in fact, I believe I initially created the project using RH6. In any case, I read a similar thread on this forum and decided that perhaps my Project Title and Project Name are invalid, since they both have apostrophes ("XX YY User's Guide"). So, I renamed them (using RH8, of course) to "XX YY User Guide" and now, things are VERY SCREWED UP. I've attached the dialog box that I now receive, it's cycling through every single topic in my project (~50 topics), and I'm getting tired of clicking OK.
    Is there any quick fix for this problem, or do I need to just start anew?
    Using: RH8, Windows XP.
    Images/Topics/Master Pages: Names have underscores, but I believe those are legal; never had an issue before migrating to RH8. No spaces or other illegal characters.
    Thank you...any help would be appreciated. I've never come across this problem before, even with the apostrophes in the Project Title/Name.

    Hi there
    In addition to what my esteemed colleague Peter offered, I'll add this.
    The image shows that you have an apostrophe present. Perhaps try renaming things so the apostrophe isn't present?
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Illegal characters in a Sharepoint list

    I'm trying to export an Access table to SP with 20 columns and 4,500 records and I keep geting this strange error "There was an error copying data to a Sharepoint list.  Cannot update.  Database or object is read-only. "  I can export to other formats OK, just not Sharepoint.
    According to a few posts, it appears my dilemma is related to illegal characters in the table itself.  Could the problem be something else?
    What characters are not allowed in a Sharepoint list? 
    Thanks.

    Thanks for reply.  I've tried moving to Sharepoint by plain old Export and the new "Publish to Access Services."  Get the error both ways.
    In an effort to isolate the problem, made a copy of my table and deleted all but the first ID column.  
    With only one column of the ID autonumber data, it exported successfully to Sharepoint.
    When I added a 2nd column titled "Prefix" and it worked.  Then I added 3rd column titled "LastName" containing various last names, the "read only" error occurs.
    I can provide a copy the 3 column table to anyone willing to take a look.  Something in the table causing trouble!
    Thanks

  • ADF Faces Components Demo - Illegal Characters error

    Hi ,
    I downloaded the ADF Faces Components Demo for version 11.1.2.3.0 from http://www.oracle.com/technetwork/developer-tools/adf/downloads/index.html . I tried following instructions :ADF Faces Components Demo Install Instructions
    This is getting downloaded as rcf-dvt-demo.zip. I renamed it to rcf-dvt-demo.war.
    Then I tried to create a project from this war... and got following error :
    The project file "C:\rcf-dvt-demo.war!\Project.jpr" is not valid. The file name may contain illegal characters, it may be too long, or permissions for this file or one of it's parent directories may be restricted.
    Please help . Am i downloading from correct location and following the correct instructions.
    Thanks,
    Rajdeep

    Good Catch Timo ... Lot of thanks.
    Still I will put down the silly mistake of overlooking the wizard.
    I was doing the correct thing - "create a new application and inside this application workspace you add a new 'project from war'." But mistake was .. First step of wizard it is project name and path,, and then second step is war location... and in hurry I was giving the project name and war location in first step.
    Thanks,
    Rajdeep

  • Illegal characters in SOAP message

    Hi
    I consistently get the following in the server log (I'm using JAX-WS 2.1):
    Couldn't create SOAP message due to exception: XML reader error: javax.xml.stream.XMLStreamException: ParseError at [row,col]:[1,1]
    Message: Content is not allowed in prolog.
    com.sun.xml.ws.protocol.soap.MessageCreationException: Couldn't create SOAP message due to exception: XML reader error: javax.xml.stream.XMLStreamException: ParseError at [row,col]:[1,1]
    Message: Content is not allowed in prolog.
    at com.sun.xml.ws.encoding.SOAPBindingCodec.decode(SOAPBindingCodec.java:292)
    at com.sun.xml.ws.transport.http.HttpAdapter.decodePacket(HttpAdapter.java:276)
    at com.sun.xml.ws.transport.http.HttpAdapter.access$500(HttpAdapter.java:93)
    at com.sun.xml.ws.transport.http.HttpAdapter$HttpToolkit.handle(HttpAdapter.java:432)
    at com.sun.xml.ws.transport.http.HttpAdapter.handle(HttpAdapter.java:244)
    at com.sun.xml.ws.transport.http.servlet.ServletAdapter.handle(ServletAdapter.java:135)
    at com.sun.enterprise.webservice.JAXWSServlet.doPost(JAXWSServlet.java:176)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:738)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)
    at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:411)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:317)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:198)
    Caused by: com.sun.xml.ws.streaming.XMLStreamReaderException: XML reader error: javax.xml.stream.XMLStreamException: ParseError at [row,col]:[1,1]
    Message: Content is not allowed in prolog.
    at com.sun.xml.ws.streaming.XMLStreamReaderUtil.wrapException(XMLStreamReaderUtil.java:267)
    at com.sun.xml.ws.streaming.XMLStreamReaderUtil.next(XMLStreamReaderUtil.java:95)
    at com.sun.xml.ws.streaming.XMLStreamReaderUtil.nextContent(XMLStreamReaderUtil.java:110)
    at com.sun.xml.ws.streaming.XMLStreamReaderUtil.nextElementContent(XMLStreamReaderUtil.java:100)
    at com.sun.xml.ws.encoding.StreamSOAPCodec.decode(StreamSOAPCodec.java:174)
    at com.sun.xml.ws.encoding.StreamSOAPCodec.decode(StreamSOAPCodec.java:296)
    at com.sun.xml.ws.encoding.StreamSOAPCodec.decode(StreamSOAPCodec.java:128)
    at com.sun.xml.ws.encoding.SOAPBindingCodec.decode(SOAPBindingCodec.java:287)
    ... 52 more
    Is there any way to avoid having to parse illegal characters in the HTTP SOAP request? E.g. by stripping off BOM (byte order mark) characters prior to conversion to SOAP?
    Help much appreciated,
    Lance

    Hi lance,
    Hi
    I consistently get the following in the server log (I'm using JAX-WS 2.1):
    Couldn't create SOAP message due to exception: XML reader error: javax.xml.stream.XMLStreamException: ParseError at [row,col]:[1,1]
    Message: Content is not allowed in prolog.
    com.sun.xml.ws.protocol.soap.MessageCreationException: Couldn't create SOAP message due to exception: XML reader error: javax.xml.stream.XMLStreamException: ParseError at [row,col]:[1,1]
    Message: Content is not allowed in prolog.
    at com.sun.xml.ws.encoding.SOAPBindingCodec.decode(SOAPBindingCodec.java:292)
    at com.sun.xml.ws.transport.http.HttpAdapter.decodePacket(HttpAdapter.java:276)
    at com.sun.xml.ws.transport.http.HttpAdapter.access$500(HttpAdapter.java:93)
    at com.sun.xml.ws.transport.http.HttpAdapter$HttpToolkit.handle(HttpAdapter.java:432)
    at com.sun.xml.ws.transport.http.HttpAdapter.handle(HttpAdapter.java:244)
    at com.sun.xml.ws.transport.http.servlet.ServletAdapter.handle(ServletAdapter.java:135)
    at com.sun.enterprise.webservice.JAXWSServlet.doPost(JAXWSServlet.java:176)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:738)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)
    at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:411)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:317)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:198)
    Caused by: com.sun.xml.ws.streaming.XMLStreamReaderException: XML reader error: javax.xml.stream.XMLStreamException: ParseError at [row,col]:[1,1]
    Message: Content is not allowed in prolog.
    at com.sun.xml.ws.streaming.XMLStreamReaderUtil.wrapException(XMLStreamReaderUtil.java:267)
    at com.sun.xml.ws.streaming.XMLStreamReaderUtil.next(XMLStreamReaderUtil.java:95)
    at com.sun.xml.ws.streaming.XMLStreamReaderUtil.nextContent(XMLStreamReaderUtil.java:110)
    at com.sun.xml.ws.streaming.XMLStreamReaderUtil.nextElementContent(XMLStreamReaderUtil.java:100)
    at com.sun.xml.ws.encoding.StreamSOAPCodec.decode(StreamSOAPCodec.java:174)
    at com.sun.xml.ws.encoding.StreamSOAPCodec.decode(StreamSOAPCodec.java:296)
    at com.sun.xml.ws.encoding.StreamSOAPCodec.decode(StreamSOAPCodec.java:128)
    at com.sun.xml.ws.encoding.SOAPBindingCodec.decode(SOAPBindingCodec.java:287)
    ... 52 more
    [Look here|http://forums.java.net/jive/message.jspa?messageID=194629]
    seems trivial !!
    the same msg comes up for various issues related to SOAP requests...
    Is there any way to avoid having to parse illegal characters in the HTTP SOAP request? E.g. by stripping off BOM (byte order mark) characters prior to conversion to SOAP?
    Not sure if there is ?
    You have to ensure no illegal characters exists in the SOAP request (Rather than looking for a work around) ; )
    Help much appreciated,
    Lance

  • JAVA Regex Illegal Characters

    Hello - I am trying to find a list of all illegal characters which have to be escaped in JAVA Regex pattern matching but I cannot find a complete list.
    Also I understand that when doing the replaceall function that there is a special list of characters which can't be used for that as well, which also have to be escaped differently.
    If anyone has access to a full complete list as to when to escape and how I would greatly appreciated it!
    Thanks,
    Dan

    I also noticed this below link:
    http://java.sun.com/docs/books/tutorial/extra/regex/literals.html
    It said the following characters are meta-characters in regex API:
    ( [ { \ ^ $ | ) ? * + .
    But it also says the below:
    Note: In certain situations the special characters listed above will not be treated as metacharacters. You'll encounter this as you learn more about how regular expressions are constructed. You can, however, use this list to check whether or not a specific character will ever be considered a metacharacter. For example, the characters ! @ and # never carry a special meaning.
    Does anyone know if there would be any issues if I escaped when a character didn't need to be escaped?

  • Illegal characters in key fields

    Hi,
    What are the illegal characters for key fields in the database for SAP ME?
    Br,
    Johan Nordebrink

    Hello Johan,
    Please refer to SAP Note #1363812.
    Regards,
    Alex.

  • Illegal characters in xml configuration files

    Hi,
    We are storing user configuration details in the server.xml for use with startup classes.
    We are experiencing problems where the values of this configuration information contain characters such as < & > and we receive the following error:
    07/05/17 15:05:35 Start process
    Error initializing server: Fatal error at line 92 offset 20 in file:/home/orabpel/OraHome_2/j2ee/OC4J_BPEL
    /config/server.xml: The content of elements must consist of well-formed character data or markup.I was hoping the problem could be resolved by enclosing the values of nodes which contain illegal characters with <![CDATA[]]>, but this has not resolved the problem.
    Is there any way we can achieve this?
    The reason we are storing these characters in the server.xml is because they represent obfuscated passwords in rot39 format. Perhaps there is a more suitable obfuscation/encryption format that is very simple to implement?
    Thanks
    Toby

    Actually, specifing the values as CDATA does work, but i had a typo that was causing it to fail.
    Toby

  • Illegal characters removal .

    Hi all,
    We are getting some illegal characters, when we checked the product details it has "-" character but on the site it is showing "?" character. Even when tried with valueishtml="true" did'nt helped. We cant touch any Java classes for right now, is there any solution in jsp side , or any droplet is there which i am not aware of ? can anyone suggest us how to resolve this please .
    Just for the record our application is UTF-8.
    Thanks,

    I think Gautam may be on the right track. It sounds like your character is stored correctly in the database and is getting replaced by ? either in the jdbc driver or in the GSA repository code when ATG fetches the db record. The fact that you're seeing ? in both /dyn/admin and the ACC leads me to that conclusion. /dyn/admin is a mix of jhtml and plain html. The ACC is a java Swing app. The repository layer must think the character is a ?. If the repository layer has the wrong character, you'll never be able to fix it in your jsp code.
    There are some properties of GSARepository that affect character set translation. The properties are useSetAsciiStream, useSetBinaryStream, and useSetUnicodeStream. They're described in the SQL Repository Reference chapter of the ATG Repository Guide. Every repository has its own copy of the properties. I don't know of any cases where the ootb property values do the wrong thing for the Oracle db, but it's something you could play with if you're still stumped. First make sure you're running with the ootb values for the repository that's causing trouble. Then try changing the values (one at a time) to see if they make any difference. You might have to restart your ATG server for each change to take effect.

  • URL contains illegal characters

    hi,
    The following is the error i get when i am click a link in my page
    The URL contains illegal characters. You need to encode these illegal characters: OA.jsp?page=/danka/oracle/apps/bis/supplyTrend/webui/DKProduct&fromMonth=01-Aug-2005&toMonth=01-Apr-20&periodType=MONTH geoType=ordered_item geoMainName=0-20 Copies/Minute&geoName=CANON retainAM=Y addBreadCrumb=Y&_ti=1414051287
    There is a space in my geoMainName value between 0-20 and Copies/Minute.
    I know that we have to do some encoding for this. But i am not knowing how to do it. I saw your previous thread with the same problem, but i was not able to understand.
    The following is the line of code i wrote to make a item as a link
    geoNameBean.setDestination("OA.jsp?page=/danka/oracle/apps/bis/supplyTrend/webui/DKProduct&fromMonth="+fromMonthStartDate+"&toMonth="+toMonthStartDate+"&periodType="+periodType+"&geoType=item_manufacturer&geoName={@GeoName}&retainAM=Y&addBreadCrumb=Y");
    Please guide me to encode this parameter value of geoMainName.
    Thanking you
    ri

    did you go through the javadoc for this class ?
    the usage is given there
    Thanks
    Tapash

  • Escaping illegal characters

    Hi everyone,
    I'm looking for some help on how to encode or "escape" illegal characters when writing strings (which contain the illegal characters) to XML. I'm basically creating an XML document which describes the structure of a JTree I have, but thus far, i've been using the replaceAll method to replace illegal characters in the strings with legal ones before converting to XML but i don't feel this is the best way to do it.
    The first part of my export to xml method is:
    public void export(DefaultMutableTreeNode rootNode) {
         try {
              textArea.append("Export: Exporting current tree... \n");
              final DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
              final Document document = builder.newDocument();
              try {
                   GetTitle parser = new GetTitle();
                   Reader reader = getReader(userI.getTarget().toString());
                   new ParserDelegator().parse(reader, parser, true);
              catch (Exception e)     {
                   System.out.println(e);
              String validRoot = docTitle.replaceAll("\\'", "_");
              final Element root = document.createElement(validRoot);
              root.setAttribute("node", "root");
    The GetTitle method will simply get the title of the URL returned by userI.getTarget and store it in the docTitle variable. If there are any illegal characters in the validRoot string, then i get an error at the line:
    final Element root = document.createElement(validRoot);
    Could anyone suggest how i can encode any illegal characters in the validRoot string before i invoke the createElement method? Is there a parser I can use which already does this?
    Any help will be much appreciated.
    Thanks.

    Correct me if I am wrong but the code:
    Element foo = document.createElement("King's College");is essentially creating something corresponding to the XML <King's College></King's College> which is of course illegal characters in the XML tags
    the solution that you went for:
    Element foo = document.createElement("Root");
    foo.setAttribute("Title", "King's College");is essentially equivalent to this XML <Root Title="King's College"></Root> which is a legal use of a tic mark, but still locates the data in the wrong place
    Perhaps what you wanted was:
    Element foo = document.createElement("Root");
    foo.appendChild(document.createText("King's College"))which corresponds to the more natural XML <Root>King's College</Root>
    By the way, I've never tried any of this and could have it all wrong. I just happened to be reading the XML tutorial and noticed their comments that the most common mistake in DOM style XML processing is to confuse the element nodes (which are just the tags) with the the data contained in the element which will always be in one or more text children of an element node.
    see Document, Element, & Node in the API

  • Importing Library with "Illegal" characters-Problem

    Importing a large library of images each with own description eg Couple/Dog-#12/3/1.tif
    Found problem with / (Forward slash)...Lightroom shows no Preview.
    Went to File Handling Tab
    Went to Set The Following Characters as Illegal and chose all of them.
    But will still not import any image with a Forward Slash.
    Short of correcting thousands of images manually I'm at a loss of what to do.
    What I don't understand is why they will open in Photoshop but not Lightroom.
    Help much appreciated!

    In Bridge, go through these files and use Batch Rename to correct these file names. The preset "String Substitution" allows you to search for "/" and replace it with "-", and do the same with the "#".
    By using those characters, you were asking for trouble sooner or later. Best to avoid them.
    John

  • Illegal characters in topic file names

    Robohelpers,
    I imported vintage MS Word files (dating from the early 90s)
    in to RoboHlep HTML. The topics generated correctly, but some of
    the characters in the the file names converted incorrectly, and are
    not recognized inside the program and the links to these topics are
    dead.
    The most common glitches:
    - The EN dash converts to an underscore, e.g. _–_
    appears on the disk as ___
    - The apostrophe converts to Æ
    The Topic list shows the correct characters. But since they
    don't agree with the physical file names, RoboHelp marks the icon
    with an "X".
    What's the best way to correct his situation, if you have
    hundreds of topics to deal with?
    I search for a solution without success. I can't believe that
    no one has encountered this issue before.
    Best regards,
    Charles Arnold
    MetLife DI
    Tampa, Florida
    I found a utility call "Rename" by on an Adobe web site, but
    it generated DLL conflict in my computer.

    Hello Charles -
    Are you posting to the correct forum? I ask because you
    posted that you're importing into RoboHelp HTML - this is the
    WebHelp forum. However, your situation can also occur with WebHelp.
    The problem is the Word files used Microsoft extended characters,
    the so-called "Smart" characters but that was dumb to use for
    anything that is converted to HTML. Do a mass search and replace
    for the "Stupid" quote, apostrophy and EN-dash and correct them to
    true HTML valid characters.
    Regards,
    GEWB
    See:
    http://tatumweb.com/typerat/ansirodent.htm

Maybe you are looking for

  • Upload System folder to use Classic in OS 10.4.6?

    Hello, I have recently upgraded my old iMacs (400MHz & 500 MHz) to OS 10.4.6 and they both seem to run fine, except one thing, they don't have Classic. I have Classic ablility on my iBook G4 which uses OS 10.3.7. My question is there anyway to just d

  • Why mail messages appear bigger when sent?

    Hello, When I send an e-mail from Mail, some parts of the signature and the text appear in 16 instead of 12 as set in preferences. It looks normal when I right it but then when someone reply to me I can see that some of the text is bigger that what i

  • Watching digital copys

    when I try to watch the digital copy of a movie in Itunes it no video or audio come up its only a gray screen

  • Infinite loop during recovery of JE 4.1.10 database environment

    Hi there, We have a JE 4.1.10 database environment which is over 20GB in size. In order to improve performance we increased je.log.fileCacheSize so that we could cache all of the 10MB DB log file descriptors in memory and prevent JE from having to co

  • IFrame af:Tree issue

    Hello All, We are trying to add an iFrame to a Custom WebCenter Portal page which also has an af:tree component. We are adding the iFrame through the f:verbatim route <h5> <f:verbatim rendered="true"> <iframe name="formsLauncher" width="5" height="5"