Illegal filename

Hi,
I built an user interface to allow free filenames to save data. unfortunately some user enters "/" and ":". those characters are illegal in windows environment. when the program tries to save the file either nothing happens and all datas are gone or an error message occurs.
how can I prevent this. do I really have to check the filename to detect any possible illegal characters on it? or is there an easier way.
thanks for the help
yves

Hi,
There are several solutions...
If you're using LabVIEW 7.x, you can create an event structure and check
"key down", "key repeat" and "value change" to do the filtering.
In LabVIEW <7, you can do this in a while loop, but it's ugly.
Perhaps the easiest way it not to use a string control, but a path control.
In LabVIEW >6, you can have a browse button as a bonus. The user can now
browse to different paths, so if you don't want this, you still have to
check the result.
Regards,
Wiebe.
"Yves" wrote in message
news:[email protected]..
> Hi,
> I built an user interface to allow free filenames to save data.
> unfortunately some user enters "/" and ":". those characters are
> illegal in windows environment.
when the program tries to save the
> file either nothing happens and all datas are gone or an error message
> occurs.
> how can I prevent this. do I really have to check the filename to
> detect any possible illegal characters on it? or is there an easier
> way.
>
> thanks for the help
> yves

Similar Messages

  • "E_PACK_ERROR: illegal filename for a PUT" Error in Packaging a PDF file

    Hi Jim,
    As per ContentServer_Technical_Reference.pdf (page no 9) I passed <filename>, <location> and <src> parameter in our packaging request xml. File is packaging successfully and service is also placing the encrypted file to new location listed in <location> but following error is comming:
    <error xmlns="http://ns.adobe.com/adept"
    data="E_PACK_ERROR http://myserverurl/packaging/Package illegal%20filename%20for%20a%20PUT"/>
    My Packaging XML:
    <package xmlns="http://ns.adobe.com/adept" action="add">
    <fileName>9781591439745.pdf</fileName>
    <location>ftp://username:password@myserverurl/www/folder/9781591439745.pdf</location>
    <src>http://myserverurl/folder/9781591439745.pdf</src>
    <metadata xmlns:dc="http://purl.org/dc/elements/1.1/">
    <dc:title>9781591439745</dc:title>
    <dc:creator>Nicolya Christi</dc:creator>
    <dc:format>application/pdf</dc:format>
    <dc:publisher>Work Disribution System</dc:publisher>
    <dc:language>en</dc:language></metadata>
    <permissions><display/><excerpt/></permissions>
    <dataPath>C:/folder/9781591439745.pdf</dataPath>
    <expiration>2011-03-02T15:18:02+05:30</expiration>
    <nonce>LTIyNzc1Mjk4</nonce>
    </package>
    Please suggest me why the "E_PACK_ERROR http://myserverurl/packaging/Package illegal%20filename%20for%20a%20PUT" error is comming.
    I am waiting your reply...
    With regards,
    Mangal Varshney

    Hello Jim,
    I tried as you suggest not to use all three, filename, location and src. I removed the <filename> parameter from packaging xml and then try to package the same error are comming again. Jim this same code was working earlier, we are using same on our production sever till now but suddenly it stop working.
    "E_PACK_ERROR: illegal filename for a PUT"
    I checked the packaging.log file, the log message are:
    02 Mar 2011 05:41:56,673 TRACE AdeptServlet: request POST http://myserverurl/packaging/Package
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection: Open jdbc:mysql://127.0.0.1:3306/adept with user=dmr_mysql_dba
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection: SELECT distid, name, description, disturl, notifyurl, publickey, sharedsecret, maxloancount, linkexpiration FROM distributor WHERE distid = ?
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection:   obj 1 = 00000000-0000-0000-0000-000000000001
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection: rollback
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection: SELECT distid, nonce, expiration FROM distusednonce WHERE distid = ? AND nonce = ?
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection:   obj 1 = 00000000-0000-0000-0000-000000000001
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection:   obj 2 = [B@6c2a78
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection: INSERT INTO distusednonce(distid, nonce, expiration) VALUES(?, ?, ?)
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection:   obj 1 = 00000000-0000-0000-0000-000000000001
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection:   obj 2 = [B@6c2a78
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection:   obj 3 = Wed Mar 02 06:41:56 CST 2011
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection: DELETE FROM distusednonce WHERE expiration < ? AND distid = ? AND nonce = ?
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection:   obj 1 = Wed Mar 02 05:41:56 CST 2011
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection:   obj 2 = 00000000-0000-0000-0000-000000000001
    02 Mar 2011 05:41:56,673 TRACE DefaultSQLDatabaseConnection:   obj 3 = [B@6c2a78
    02 Mar 2011 05:41:56,689 TRACE DefaultSQLDatabaseConnection: SELECT resourceid, item, description, title, publisher, creator, language, identifier, thumbnailurl, format, src, downloadtype FROM resourceitem WHERE src = ? AND downloadtype = ?
    02 Mar 2011 05:41:56,689 TRACE DefaultSQLDatabaseConnection:   obj 1 = http://myserver2url/folder/9781591439745.pdf
    02 Mar 2011 05:41:56,689 TRACE DefaultSQLDatabaseConnection:   obj 2 = simple
    02 Mar 2011 05:41:56,876 ERROR Package: Error in packaging
    java.io.IOException: illegal filename for a PUT
        at sun.net.www.protocol.ftp.FtpURLConnection.getOutputStream(Unknown Source)
        at com.adobe.adept.packaging.servlet.Package.aquireLocationStream(Package.java:359)
        at com.adobe.adept.packaging.servlet.Package.doPost(Package.java:535)
        at com.adobe.adept.packaging.servlet.Package.doPost(Package.java:43)
        at com.adobe.adept.servlet.AdeptServlet.doPost(AdeptServlet.java:184)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:290)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
        at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
        at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
        at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:859)
        at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProto col.java:579)
        at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1555)
        at java.lang.Thread.run(Unknown Source)
    02 Mar 2011 05:41:56,876 TRACE DefaultSQLDatabaseConnection: rollback
    02 Mar 2011 05:41:56,907 ERROR AdeptServlet: request error [myip]: E_PACK_ERROR http://myserverurl/packaging/Package illegal+filename+for+a+PUT
    02 Mar 2011 05:41:56,907 TRACE AdeptServlet: request end http://myserverurl/packaging/Package
    Please debug the above message and suggest me what i will do to rectify this issue.
    With Ragards,
    Mangal Kumar

  • Characters in the filename.

    Is there a limitation to use special characters in the documents filename.
    Ex. In windows you can not use \/:*?"<>| characters in the filename.
    thanks
    Gb
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by gb:
    Is there a limitation to use special characters in the documents filename.
    Ex. In windows you can not use \/:*?"<>| characters in the filename.
    thanks
    Gb
    <HR></BLOCKQUOTE>
    Hi Gb,
    Here's the list of illegal filename characters in iFS:
    \ , / : ; * ? " < > |
    Regards,
    Diep Maser

  • For all of you who think Encore messages are obscure & that Adobe Support is lousy - Read On

    I thought I would share a little story of woe with you all.
    Not only will this give you a good laugh, but it will show you that you essentially don't know when you have it as good as you do with Adobe.
    I create High Resolution DVD-Audio discs, and for this I have to use Sonic's DVD-Audio Creator system. It is not only the equivalent for Audio of Scenarist for Video, but it is almost as expensive as well. The point will become clear.
    So, I am authoring this Widescreen project and the deadline is like tomorrow.
    So it's a case of "hurry, hurry, hurry".
    Error #1 - "cannot open file xxx_HL_LB.tif" that is it. So I am looking through, and thinking "there isn't one. Must have missed something here".
    Yet to no avail. In desperation, I dig out the manual and buried away in an appendix is the information that for a Widescreen disc, the SPHL image is not scaled as this makes text degrade significantly, so a separate SPHL file with the naming convention of (filename)_HL_LB.TIF is required.
    This has to be manually placed into the folder created when using the "Import Menu" tool, as it cannot be done automatically".
    It then goes on to say that if Pan & Scan is also required, these need yet another file with the naming convention of (filename)_HL_PS.TIF.
    Thank for making this obvious guys - you would have thought that the Command Editor tool would point this out to you when you set the Aspect Ratio to 16:9, but no.
    So I get this sorted out - only 86 screens, all requiring new Highlight Layers.
    It's compile time again.
    Error #2 - "Cannot open source file "mainmenu ATS.TIF" - for those of you who know Sonic, you'll no doubt spot the problem immediately. If you do not know this, and try to call support, you will be told that unless you have a maintenance contract, online support is not available. A maintenance contract is several thousand dollars - per year.
    (The answer, if you are unaware, is that the compiler cannot handle spaces in the file names, yet the importer has no such problem & again does not tell you you are importing a file that is effectively useless and will crash the compiler with an error message.)
    I fix this & move on.
    Error #3 - gets right to the end of the process.
    All files converted & parsed.
    All AOB created
    All VOB created.
    Starts laying out the UDF/IFO information, gets all the way to the end and errors with a "illegal filename - cannot use ?></\-, only _ 1-9 and A-Z"
    Again, the command editor could tell you this, and not allow you to enter in the bloody name, but no - that would be far too easy.
    It's the support that annoys me more than anything though.
    Sonic still sell this product - it's $13,000 - and yet refuse to provide online support as it is a "dead format" (who told them that? I have done 5 this year already, and have another 23 on the books already) despite the fact that labels are still releasing in DVD-A (albeit few & far between) and that if I want to continue with support I should buy a maintenance contract. They go on to "helpfully" point out that I should get in touch with my supplier, as the new HD formats offer all that is on DVD-A & more besides - yeah, like the $150,000 price tag plus support contract, annual AACS Site license, and per-title AACS fees that are mandatory despite all Blu Ray DRM being broken wide-open.
    And you lot moan about Adobe, and Encore's messages?
    You do not know when you are well off.

    Part 2.
    Another thing that all Encore users ought to regularly offer up a daily prayer of thanks for is the PSD support for menus.
    Let me tell you a little story, all about how bloody awkward it
    i can
    be, again using Industry Standard "Flagship" applications.
    The little saga above about the additional _HL_LB image completely forgot to mention that there is a very nasty scaling issue awaiting the ignorant (like me).
    It doesn't scale the letterbox image automatically.
    SO, it's a case of as usual, preparing all Widescreen assets in anamorphic mode (create & design in PS using PAR correction, reshape image to Square Pixels)
    Duplicate the _HL for the _HL_LB image.
    Now, because of the rescaling issue, take this into PS, and resize the image to 720x360, then resize the
    i canvas
    to 720x480, making certain your background is white, as failure to do this will mean the Letterboxed SPHL are incorrectly scaled, although the button hotspots are in the right place.
    Aargh - if it was not for the "Phone A Friend" option, I would still be stuck on this.

  • Error in parallel exp-imp using ftp method

    Hi,
    We are doing migration of ERP system running on redhat linux 6 and sybase 15.7 .
    Trying to do parallel export import using ftp method.
    Here when we start the export monitor, it gives the below error.
    Required system resources are missing or not available:
      Structure of subdirectories in local export directory '/export/TRS_Mock_Export/ABAP' and FTP export directory '/usr/sap/TRQ/DVEBMGS00/TRS_Mock_Export/ABAP' on '<ip>' server is different.
    But the structure is entirely same.
    Even we have moved the export directory which got created after sapinst was run (before starting migmon) to the target server.
    Below is a content of export monitor file .
    export_monitor_cmd.properties
    ftpCopy
    dbType=SYB
    exportDirs=/export/TRS_Mock_Export/ABAP
    installDir=/media/sapinst_logs/Mock_Exp_Imp/sapinst_instdir/BS2010/ERP605/LM/COPY/SYB/EXP/CENTRAL/AS-ABAP/EXP/log_17_Apr_2015_05_03_53
    ddlFile=/export/TRS_Mock_Export/ABAP/DB/DDLSYB_LRG.TPL
    r3loadExe=/usr/sap/TRS/DVEBMGS00/exe/R3load
    tskFiles=yes
    dataCodepage=4103
    jobNum=8
    monitorTimeout=30
    loadArgs=-stop_on_error
    ftpHost=ip
    ftpUser=user
    ftpPassword=pw
    ftpExportDirs=/usr/sap/TRQ/DVEBMGS00/TRS_Mock_Export/ABAP
    ftpExchangeDir=/media/sbx_exchange_dir
    ftpJobNum=3
    trace=all
    Please suggest.
    Regards,
    Amit Jana.

    Thanks for the steps Siddhesh.
    ftp is working.
    in the properties file for ftp user earlier gave a different user.
    Now gave sidadm and this error is resolved.
    Now facing a different issue.
    In the properties file we gave 'server' in the beginning . This is only starting R3load processes but ftp transfer does not start.
    Then gave 'ftp' below 'server' but got the below error.
    Check below the file contents and error :
    export_monitor_cmd.properties
    server
    ftp
    dbType=SYB
    exportDirs=/export/TRS_Mock_Export/ABAP
    installDir=/media/sapinst_logs/Mock_Exp_Imp/sapinst_instdir/BS2010/ERP605/LM/COPY/SYB/EXP/CENTRAL/AS-ABAP/EXP/log_17_Apr_2015_05_03_53
    ddlFile=/export/TRS_Mock_Export/ABAP/DB/DDLSYB_LRG.TPL
    r3loadExe=/usr/sap/TRS/DVEBMGS00/exe/R3load
    tskFiles=yes
    dataCodepage=4103
    jobNum=8
    monitorTimeout=30
    loadArgs=-stop_on_error
    ftpHost=ip
    ftpUser=user
    ftpPassword=pw
    ftpExportDirs=/usr/sap/TRQ/DVEBMGS00/TRS_Mock_Export/ABAP
    ftpExchangeDir=/media/sbx_exchange_dir
    ftpJobNum=3
    trace=all
    =======================================
    TRACE: 2015-04-20 06:14:57 sun.net.ftp.impl.FtpClient readServerResponse
    Server [/192.168.51.12:21] --> 230 Login successful.
    ERROR: 2015-04-20 06:14:57 com.sap.inst.migmon.exp.ExportStandardTask run
    Fatal exception during execution of the Export Monitor.
    java.io.IOException: illegal filename for a PUT
            at sun.net.www.protocol.ftp.FtpURLConnection.getOutputStream(FtpURLConnection.java:528)
            at com.sap.inst.lib.ftp.FtpService.put(FtpService.java:160)
            at com.sap.inst.migmon.exp.ExportExchangeTask.removeExportStatistics(ExportExchangeTask.java:277)
            at com.sap.inst.migmon.exp.ExportStandardTask.doRun(ExportStandardTask.java:92)
            at com.sap.inst.migmon.MigrationTask.run(MigrationTask.java:431)
            at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
            at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:351)
            at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:178)
            at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178)
            at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
            at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
            at java.lang.Thread.run(Thread.java:791)
    INFO: 2015-04-20 06:14:57
    Export Monitor is stopped.

  • Tiếng Việt.html on external volume

    Tieng Viet.html shows up in my trash and I have tried everything to delete it. I have used the option trick, downloaded "Force empty' and other programs but It will not empty. I have checked discussions and tried what was suggested but nothing works. When I disconnect my external hard drive (where I backup to) my trash is empty so I know that the file is not on my main drive. I have deleted the files on my backup drive and did a new back-up using a different name for the back up but the "Tieng Viet" file is still in the external drive.I have renamed the folders that the Tieng Viet was in inside the trash but nothing works. I can't get rid of them. They show up in Retrospect in .Trashe
    HELP
    QuickSilver G4 Dual Mac OS X (10.4.8)

    Adobe have claimed that Apple 'fixed' the problem caused by the reporting of illegal filenames with the release of OS 10.4.7 (Relevant Adobe doc). Irrespective of whatever (possibly very rude) comments one might make, it might be worth downloading and (re-)running the Mac OS 10.4.8 Combo Updater PPC
    I would not, frankly, expect that to help get rid of that pesky file, but (re-)running a Combo Updater won't do any harm, might spruce up a few things, and… you never know.
    A bit more sensible perhaps… Adobe admit that the file (or its being reported as illegal) can cause directory damage. A clue! A clue? Only one way to find out – use DiskWarrior (or TechTool) to rebuild the drive's disk directory. Bottom line: even if this doesn't prove to be the "final solution" it does sound like something that really should be done so that any damage is repaired. Will subsequent messing with the 'VietKong' cause more damage that needs to again be repaired? Dunno…

  • When exporting my aperture library it unexpectedly quits.

    I have tried to export my aperture library and it keeps crashing on me. I have already exported 2 other libraries from the same computer and have had no issues however i am trying to export the 3rd library and it gets to 20% and crashes. I have already tried to repair the library but it continues to crash. Any suggestions? Thanks in advanced!

    Is your external drive formatted correctly? MacOS X Extended? And is the drive mounted locally or is it a network volume? Aperture will have problems and may crash, if you are copying a library to a different filesystem.
    But when i try to export my 3rd library (labeled "Maldvies 2012') it crashes after about 20% of it is exported.
    You may have a corrupted item in your library (image file or video). Sometimes an item has an illegal filename, containing non printable characters or return characters. Or the media corrupted and Aperture cannot render thumbnails or preview. Try to export in smaller installments - select only half of the items you want to export. If this suuceeds, you will know that the problematic file is in the other half of the items. Keep subdividing, until you know which photo or movie is crashing Aperture, then delete it from the library.
    Not sure where to find the crash logs??
    The crashlogs are shown in the alert panel, when Aperture crashes, you should see something similar to this:
    Process:         Aperture [6484]
    Path:            /Applications/Aperture.app/Contents/MacOS/Aperture
    Identifier:      com.apple.Aperture
    Version:         3.4.3 (3.4.3)
    Build Info:      Aperture-310022000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [192]
    User ID:         501
    Date/Time:       2013-03-09 12:36:23.335 +0100
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000000000a4
    Please post the first 50 lines.
    Older crashlogs can be found using the "Console". You can launch the "Console" from Applications/Utilities. Click on "Show Logs" in the Toolbar. The "Files" section in the Sidebar has a brick   "Diagnostic Reports" or "Crash Reporter". Look for files with Aperture in the name.
    Regards
    Léonie

  • 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

  • Illegal character error on good filename

    I created a new RoboHelp project and tried to insert a graphic named Timeline.jpg. I got the following error:
    Unable to rename file, "Timeline.jpg".
    The filename contains illegal characters.
    I tried inserting a graphic that I had used in a previous RoboHelp project and got the same error. Then I opened a previous RoboHelp project and was able to successfully insert the Timeline.jpg graphic into that project.
    I'm on Windows XP and RoboHelp 8. I would really like to avoid having to re-install RoboHelp, but I'm not sure where to look to troubleshoot this error message. Any help on this matter would be greatly appreciated.
    Thanks.

    Sorry that I wasn't more specific in reporting my solution.
    I cannot say that the deletion RB7 helped because I had done that before making my other changes.  Another website that I had visited suggested that Robo sometimes has a problem when a previous version still exists, so I can't say that removing it solved the problem.
    Previously, all the project files were in a folder on my desktop, several layers deep.  BeforeI upgraded to v.208 I did not have a problem inserting images and I never got the "illegal character name" or "cannot rename" errors.  AfterI upgraded the problems began.  BTW, I had checked the file path back to the image locations to make sure there were no spaces, illegal file names, etc.  So I knew the errors were bogus.
    After the upgrade I also noticed that all of the images I had previously inserted remained viewable in Preview Topic, but ALL of the images disappeared when I looked at the project after compilation.  At that time I was able to insert new images by saving them to the Gallery folder of RB8.  Perhaps I may have been able to insert them from another, nearby folder...I don't know.
    AfterI deleted RB7 I figured, heck, why not make everything clean and simple and copy the whole project from the desktop folder to a new folder in the root of "C."  When I re-opened the project everything was okay - back to normal.
    If I can suggest anything from my experience it would be that clean, simple directory structures are what RB-8.208 likes most and if you get too far away from RB's project folders you may get similar errors.
    Hope this helps, and thanks again for your assistance!
    John

  • How to create imported files with illegal character filenames

    We have mistakenly loaded up a lot of files in Final Cut Server 1.5 with filenames that have illegal or not recommended characters in them i.e.
    10/10/08-Clip1.mov
    FCSvr has created proxys etc but then given the asset a name with colons instead of slashes and can't connect to the original clip. i.e.
    10:10:08-Clip1.mov
    To compound matters, the clip has been saved using ascii representations for colons (%3A) i.e.
    10%3A10%3A08-Clip1.mov
    I've managed to access the database backup using pgAdmin and it looks like these entries are set in the tables pxentity and pxdmvaluestringother.
    I'm quite familiar with SQL etc so can update the values to legal ones and then rename the files the same. Is there anything I should be aware of in doing this?
    Obviously I'll make backups etc before doing it.
    Many Thanks

    Well:
    I would say an easier approach would be to just rename the files at the file system and then re catalog them into FCSvr. I'd stay away from the database if you want to just make this change.
    Hope this helps.
    Nicholas Stokes
    XPlatform Consulting

  • Removing illegal chars from Filename

    I want to rename some files, but the destination filename may have some illegal characters in it.
    I looked around a bit but I couldn't find anything that could help.
    I was expecting a char array of illegal chars which I could use to remove them.
    So is there any standard way to remove those characters?
    If not, what is a good way to get rid of them?

    DvdKhl wrote:
    Well I know about hte replacing methods,
    but I would still need to know which characters to replace.
    Of course I know the illeagal chars defined by Windows,
    but I guess different OSes have different restrictions. (Or are they the same in Windows & Linux?)
    ...AFAIK, they are not the same. And there are of course more OS'es than those two, with, no doubt, other restrictions. And sicne Java is not geared towards one OS (like NET), Java does not have such a built-in method for removing characters.

  • The Finder can't complete the operation because some data in "filename" can't be read or written. (Error code -36)

    I'm going to try to keep this short and to the point.
    I've been coming across this -32 error when copying files to ANY external device (USB sticks, external HDD etc). Larger files get the -32 error, small files transfer fine.
    I can move files within my MacBook HDD no problem, however copying them cause the -32 error.
    I brought my MacBook to the Apple store. Genius ran some diagnostics etc.
    He suggested my hard drive was failing. -32 is an i/o error and loss of data was causing the file not to copy. It was still under warranty.
    I contacted the manufacturer (Seagate), they sent me a new drive and I sent mine back.
    I was excited that the issue wasn't going to be there anymore - however I was wrong.
    My MacBook has also started freezing periodically, when I listen to music on iTunes they will stop playing for a while then resume.
    Sometimes my MacBook will just completely seize up and I get the spinning ball for about two minutes.
    Still, when copying files within my MacBook or to an external source, -32.
    I am extremely frustrated. I'm going to make a trip back to the Apple Store and speak with the Genius again, but I have a feeling he won't be able to help.
    Is there any fix for this? I see a lot of threads about the issue but no solutions.
    My Time Machine backups take forever. I've heard that the files are corrupt, so does that mean every single file that's over ~5MB are corrupt? That seems impossible. Brand new files I download won't copy, which also makes no sense.
    I'm ready to throw my MacBook in the garbage.
    Thanks in advance.

    The error can have many meanings:
    1. A file is corrupted or damaged.
    2. A folder is corrupted or damaged.
    3. A filename is too long.
    4. The filename contains illegal characters.
    5. Copying to an MS-DOS filesystem which has filename lengths restricted to 31 characters for FAT32. It also does not recognize a number of characters that are legal on HFS+ including: ",',!,@,#,$,%,^,&,*,\,|
    If you must transfer files to a PC I suggest you put them into a .zip archive with fully legal MS-DOS filenames.
    The permissions errors are normal. They are innocuous messages that will recur each time you repair permissions.

  • Filename from payload - FTP receiver adapter

    Hello everyone!
    I have a scenario wherein I need to get the value from a field coming from an IDOC and then give that value as the "filename" of the file that is saved in the FTP folder.
    IDOC > XI > FILE
    For example, if /ORDERS05/IDOC/E1EDK02/BELNR = 620000123
    then I want the name of the file to be saved in the FTP folder to be 620000123.xml
    I understand you may use the 'variable substitution' property in the FTP receiver adapter, but subsequent attempts at trying to configure that property have resulted in errors. Can anyone help me out?
    Warm regards,
    Glenn

    do u have recordset name (root message)
    For Ex: If you want to refer to the field which is bold
    below is your variable substuition:
    payload:root,1,e1,1,e2,2
    <?xml version="1.0" encoding="UTF-8" ?>
    <root>
      <dummy>
         <e1>
            <e2>Data_1</e2>
            <f/>
           <g attr="abc">text</g>
            <e2>Data_2</e2>
         </e1>
      </dummy>
      <e1>
         <e2>illegal/value</e2>
         <f/>
         <g attr="abc">text</g>
         <e2 attr="fghij">Example Value</e2>
       </e1>
    </root>
    Similarly
    for your strucutre:
    <MS_MT>
    <order>
          <number>
    the variable substuition would be
    payload:MS_MT,1,order,1,number,1
    you have to give complete XML to arrive to this value.

  • 6230i bad jpeg filename suffix - spurious " charac...

    I have received a MMS (picture) from a Nokia 6101 on Vodafone (my mother's), to my 6230i on Virgin. I can view the text and image in the MMS. If I view the details however the file is called Image001.jpg"
    A spurious " character has been appended to the '.jpg' suffix of the image file.
    Because of this I am unable to save the image as the 6230i auto-appends the existing file suffix which contains an illegal character - the phone shows an error message 'Cannot use /:\*,?;"|<>¥↲'
    I am unable to view MMS in PC Suite - they do not show up. So I'm basically stuck. Not a serious problem just a little annoying. Is there anyway I can hack the phone memory directly to delete the " or rename the image ?
    If I put a Virgin SIM in the 6101 & send to my 6230i (Virgin) this does not happen. So I don't think either phone is the culprit & I'm wondering about some issue with transmission from Vodafone to Virgin - MMS gateway - if such a thing exists ?
    Any suggestions gratefully received beyond contact customer support for the networks - I'll do that when I get a chance.
    TIA,
    DBMessage Edited by dvbdvb on 30-Dec-2005
    03:16 PM

    Vodafone say its not their problem as MMS sends/receives ok on their network.
    Virgin have tried to help but so far are at a loss. As the Virgin network is really T-Mobile, I don't know how much Virgin themselves can do.
    Why I think its the phone is that even though the network may be the cause, the phone should deal with it.
    If I forward the MMS with the extra " out of the phone to my web email it comes through fine. So it is able to parse/transmit the message just can't interpret the filename itself when trying to save the image.

  • Filenames within the Aperture container

    I have recently bought Aperture and, having transferred all my photographs into it (>200Gb), I am now trying to move the Aperture library to my file server where I have plenty of storage space. However, when I tried to copy the file to my server which is running RHEL4 I get the error message that the filename is either too long or contains illegal characters. I've lookind inside the Aperture container and have found folders with names like "2006-09-13 @ 07/27/44 pm -1importgroup" which is what is likely to be the problem. Can these filenames be changed or at least avoided in the future and if so how? The folders relate to imported folders of images from my archive drives.

    Though this is arguably a MacOS bug as it should replace the '/' character (valid in HFS+ but not in standard unix-a-like filesystems) with ':' when passing it out over the file sharing protocol in question (I'd guess the original poster is using SMB talking to Samba).

Maybe you are looking for

  • How can I exchange all the images in a slide show with new ones

    I have 18 slide shows each is a different competition for our camera club. How can I exchange all the images from each slide show with new images as our club competitions commence? I am reluctant to just delete the slide show because I will have set

  • In Table Maintaince G/L Text should come by default with G/L Acc.--Ple

    Hi Guruu2019s                    I created Ztable with 3 fields G/L Acc, G/L Acc text and another Zfield. I created a TABLE MAINTAINCE for this. Here we need, after entering the G/L A/C in table maintaince-- G/L Text should come by default. Please su

  • Is CT CS3 compatible with Mavericks?

    CT ran in 10.8.x, but won't in 10.9.2.   The error is "no document types have been found, CT will exit now". What's the fix?

  • How to invoke a Servlet method from application

    please help me.the scenario is as follows 1)a servlet is placed on the server and application has invoked servlet with URL and URL Connection class but how do i call a certain method of servlet on the server from the application.Let suppose the servl

  • MessageDownload functionality is not working properly

    Hi, I have a requirement to show the attachment against the PO in iProcurment. I have created new region and i am passing the PO HEADER ID and i am retrieving the data from the FND Tables. In the Table Region i created the item as messageDownload and