Filename length

How can you increase the filename length? We create files on a pc, then can't find them on the Mac because their names are too long and it is hard to shorten them.

What OSs are the Macs running. If OS X, there shouldn't be any problem. If OS 9, there is a limit of 31 characters.
If you frequently have to transfer files between PCs & Macs, suggest you read the link below to ensure that the file names are compatible with both systems. There may be other characteristics (other than length) in the file names that are causing the read problems.
*Mac and Windows OS File/Folder naming rules*
http://www.portfoliofaq.com/pfaq/FAQ00352.htm
 Cheers, Tom

Similar Messages

  • Filename lengths are limited to 31 characters?

    Why are filename lengths still limited to 31 characters?
    Why do the dialogs look like ports from the PC world?
    Is Logic Express itself a port from the PC world?
    Although Logic Express has its own slickness, Vision from OpCode Systems, was, considering when it was written, so much better, at least when working with MIDI. Adherance to Mac conventions was so good that it was an easy program to learn in spite of its complexity. Logic Express is proving to be difficult for me to learn with its quirky ways of doing things.

    "it's pretty difficult to put together something as complex as a modern, fully-featured DAW without making some concessions"
    "I'm sure it's a big-*** codebase, and probably not the easiest to patch for things that seem, from our perspective, to be simple."
    Actually I am aware of the difficulties in creating complex software. I was a software engineer from 1959 to 1993. (Yes, there were computers in 1959.) I'm always amazed -- not to mention pleased -- when a complex interaction among input, display, output, real-time constraints, on-the-fly editing, etc works without a hiccup. The modern, metaphorical graphical interface belies the complexity underneath. It's reminiscent of the unbelievable complexity which lies just under our own visual interface aka skin.
    I just wish that Apple had started with Opcode System's VISION product. Way back in OS 8, for example, one could have a display of a playing song and pull down a menu without interrupting either the display or the playing. With Logic the playing continues but the graphic display pauses. I know that this is not terribly relevant to anyone in the music business, but it would seem to reveal an old architecture forcibly fit to the new environment, and then I wonder about the things that I can't see.
    Well, I probably worry too much, because Logic Express has yet to crash or corrupt any of its files. And of course my whole music studio is, except for the MIDI keyboard, on my hard disk instead of the racks of equipment I used to have.

  • Filename length affects Acrobat review success

    When I initiate a shared Acrobat review to my company's server, the  e-mailed copy doesn't always get sent via Outlook (although the  "_review" PDF and associated XML folder gets saved to the server, as  normal). The problem is related to the original PDF's filename. Shorter  filenames work, longer ones don't. Could you please tell me the maximum  filename length for successfully sending the review document  automatically via the Acrobat review process?
    Perhaps the length of the file path eats into this max length as well?  (Our folder to contain PDF review documents is K:\Acrobat  Reviews\_Engineering.)
    Thanks!
    ---Mike, KVH Industries

    Hi Mike,
    There is no upper file name length as such. But there is an upper limit to the number of characters in the path of the comment repository. Comment repository is located at your server which you have selected to host your review. The repository folder name contains the name of the file_review.pdf along with some other characters. There is also an xml inside this which actually contains your comments. The complete path of this xml including the xml name should not be greater than 226 characters.
    But if this complete path is greater than this upper limit then acrobat does not let the user initiate shared review in the first place. An error "The file name(s) would be too long for the destination folder. You can shorten the file name and try again, or try a location that has a shorter path." is thrown at the profile name step.
    There might be some other issue as well due to which  the e-mailed copy doesn't always get sent via Outlook (although the   "_review" PDF and associated XML folder gets saved to the server. Could you give me some more details about the kind of server you are using and are you sending it as attachment or link? Also, where is orignal file located (local machine or server)?
    Thanks,
    Abhilasha

  • Is wpg_docload.download filename length restricted to 78 Characters ?

    All,
    I am using the wpg_docload.download procedure successfully download files. I have encountered a problem when the FILENAME values on the content-disposition attachment tag exceeds 78 characters. Is this a true and limitation of the procedure or have I done something wrong in the construction of my call to the procedure? I have read the threads concerning the upload procedure and noticed filename length restrictions. Do these apply here also ?
    Thanks In Advance,
    Tom
    Edited by: raudabat on Apr 23, 2009 6:38 AM

    Ben,
    Thanks for your reply. My code is very generic in its call to the procedure setting the mime type 'application/pdf' or 'application/ms-excel' and setting the attachment filename parameter. I wouldn't think the results SaveAs filename would have any restrictions in size dealing with directories since it is not allowed to specify the destination directory. My filename is pulled from the database. When I had a filename greater than 78 the wpg_docload function does not do anything or does not raise an error. This really restricts how a user can name there files. I dynamically create PDF and store them into the database using the document title as the filename for the download. However, if I have this limitation, I have to restrict how my user title there documents (or figure how to compress into meaningful titles).
    I have no problem with the download functionality, just the filename length aspect. Hopefully, this can be changed or I will have to live with this limitation. Any insight helpful.
    My site is on a intra-network server.
    Tom

  • Checking filename length in File Browse item before uploading

    I have a File Browse item from which users can upload files into the database. Within APEX, the file metadata and content first get uploaded into the view WWV_FLOW_FILES. By design apparently, the underlying table for this view has a NAME field which is limited to 90 characters. I would like to test the length of the Name field and provide a warning to the user if the name exceeds 90 characters, but any validation I write to that effect does not "fire" until after the file has been uploaded to the WWV_FLOW_FILES view. That attempt to upload apparently is the first thing that happens when you Submit with a File Browse item, even before the validation. If the name of the file exceeds 90 characters in length, the attempted upload errors out with a generic Page Not Found error. Is there any way to capture the length of the Name of the file with a File Browse item prior to the attempt to upload to the WWV_FLOW_FILES view, or is my only option just to put a warning banner on the page?

    Hello Mike,
    >> Column NAME in WWV_FLOW_FILES is VARCHAR2(90). It does not include the local filename path. It include a prefix like "F1521676842/" in the front of the filename.
    Yes, you are correct. I spoke from memory, and it seems that I remembered one of my customized tables, where I also save the local full path of the file.
    As far as I can see in my system, the extension of the ‘F123….’ is not with a fix length, and the highest one is 18 characters long. Therefore, it seems that the actual file name should be less than 70 characters long.
    A similar code to the following can be used in a validation check:
    <script type="text/javascript">
    function checkFileName(pThis){
      if (pThis.value != "") {
         //get path value (including file name)
         var fileAndPath = pThis.value;
         //find the index of the last "\"
         var lastPathDelimiter = fileAndPath.lastIndexOf("\\");
        //get everything after the last "\"
        var fileNameOnly = fileAndPath.substring(lastPathDelimiter+1);
        if (fileNameOnly.length >70) {
          alert("File name " + fileNameOnly +
              " is too long (" + fileNameOnly.length + " characters).");
          pThis.focus();
    </script>The “HTML Form Element Attributes” of the item should include:
    onblur=" checkFileName(this)"
    Regards,
    Arie.

  • How can I increase the viewable filename length on the desktop?

    Is it possible to increase the character length of the viewable filename items on the desktop?  For example, if I create a screenshot, the filename for the generated image is: "Screen shot yyyy-mm-dd at XX.XX.XX AM.png" but the desktop shows "Screen shot yyyy...M.png."  I would like to increase the filename character count so that more of the filename appears before it is trimmed with the ellipses.
    Can this be done?
    Update: I have alredy increased the grid spacing. That helps but only exposes 2-3 more chars.

    Periclytes wrote:
    doesn't do anything to the filename
    Yeah, you're right.  But font size definitely does something for me.  Here's a comparison between 12 and 10 point.
    Matt

  • Can you increase the viewable filename length in pages 'grid view' so the full name of the file is shown and not ellipses.

    I am aware of the terminal command which allows you to view more of the file name for files located on the desktop. Is there something similar for pages?
    The problem is only apparent in grid mode.
    See attached.
    For all of Apple's perfection for design and intuition, this is always something they seem to have neglected.

    You can either hover your mouse over the filename for a second and the full name will appear, or revert to list view.

  • Open dataset filename length.

    Hi all,
    Could any one help me regarding opendataset.
    i am creating files on app server using open dataset.
    for one program the code i have written is working.
    and for another the file is not getting created.
    my doubt is is ther any restriction with file name length while using open dataset.
    regards,
    Murali.

    Hi Murali,
       There is no such restriction on file length ...but you may not be able to view the contents in one line ...but on downloading the data on to presentation layer via CG3Y you can view the entire record ...
    Regards,
    Santosh

  • Final Cut 7.01 filename length?

    Since several versions of Final Cut, i've been noticing some "bug" or annoying limitation.
    I use to work of FCP to do my master videos. When I export them as Quicktime sequence, I use to type pretty long filenames. But for some reason, once the job is done, I get weird shorter filenames instead. So everytime I have to go back to the finder and rename them again.
    Does anyone have that same issue? Can it be corrected?
    If it is a limitation to like 32 characters, it is pretty stupid nowadays…
    Thanks

    My system is a french one. So maybe it has to do with the french encoding. But if it is the case, it is really annoying. I'm not gonna switch back and forth so the US language all the time.

  • 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.

  • How to populate DB column with filename from file browse item?

    Hi,
    Using APEX 3.1.2, I'm trying to easily allow maintenance of a filename stored in a DB column (VARCHAR2(1000)). Using the column as a file browse item seemed to be the way to go, but of course I don't want the resulting file to be uploaded and it appears as though an existing filename is not shown in a form when the row is retrieved.
    After much searching, I found Checking filename length in File Browse item before uploading , but I'm not able to connect the dots. I was thinking that I could create a hidden file browse item and use a button to call Javascript function to activate it, then save the resulting filename to my DB column item and wipe out the hidden item before it was uploaded. But the hidden item doesn't appear, so I'm not able to reference it's form input name.
    Hopefully this mess makes sense. Anyone?
    Thanks!
    Rich
    Edited by: socpres on Sep 5, 2008 2:02 PM because message was truncated after attempting to preview it first.

    Hi John,
    From what I can tell, the path of a local file browsed from a file browse item cannot be retrieved because of security concerns. Although, it seems that while Firefox 3 only returns the filename sans directory, IE6 returns the full path:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
    <head><title>Form Test</title>
    </head><body>
    <script type="text/javascript" language="JavaScript">
    function GetDirectory()
    strFile = document.FileForm.filename.value;
    intPos = strFile.lastIndexOf("\\");
    strDirectory = strFile.substring(0, intPos);
    alert(strDirectory);
    document.FileForm.Directory.value = strDirectory;
    </script>
    <form id="FileForm" name="FileForm">
    <input type="file" id="filename" name="filename" value="" onChange="GetDirectory(this.value)">
    <input type="hidden" id="Directory" name="Directory" value="">
    </form>
    </body>
    </html>
    This Win-specific code displays the path via IE6, but not in Firefox 3. Then again, I can't seem to preview posts here using FF3, either...
    Rich

  • How to get the current PDF filename?

    Hi everyone,
    I know this might be a question that has been asked millions of times but I couldn't find a direct answer.
    I'm using a work flow that comes with a Content Manager Solution so it is not Adobe this WF will generate a very long file name (about 30 characters) which will be used as the unique process number.
    To move to the next step in the work flow I have to update the table in the database and the record to be updated will use the process number.  What I did is I added a hidden text field to the form which should have the process number on the initialize function.
    Now my question is how to get the file name of the opened PDF file??
    I'm sure there is a function in JS but I couldn't find the way to do it.
    Thanks in advance guys for the help.
    Mazen

    Thanks Bruce, it worked.
    Here is what I did:
    I create a textfield and added this script in initialize event:
    ==============================================================
    var 
    fileName = event.target.documentFileName;
    //removing the file extensionvar  vDot = fileName.length-4;
    //apply the value to the TxtFieldthis.rawValue= fileName.substring(0,vDot);

  • Query FLV video length?

    Hello,
    I am currently stuck with the following problem...
    I have a table with 3 fields; id, description, and filename,
    in a table named videos. All videos are in flv format. I do not
    have info of the video length in database, and I have too many
    videos to enter the data manually into a new field. I want to
    retrieve the length of the flv videos when i output the videos as a
    list like such:
    ID Description Filename length of video
    1 machinery video machine.flv 9:20min
    2 quary video quarry.flv 3:20min
    So i am assuming MYSQL wont do it... can coldfusion parse the
    video file to determine its length so i can output that?
    If not... how can I get around this problem?

    There's a PERL solution at
    http://search.cpan.org/~clotho/FLV-Info-0.17/lib/FLV/Info.pm.
    You would have to install PERL You could probably access this via
    CFEXECUTE, or even add additional PERL code and produce something
    like a tab delimited datafile which would be consumed by
    ColdFusion.
    Also take a look at FLVMDI (FLV Meta Data Injector)
    http://www.buraks.com/flvmdi/
    along with CFEXECUTE. This would create copies of the files,
    inject the metadata into the copy and then with the xml switch,
    create an xml file as well which could then be used to read the
    information you're looking for.
    There is also a commercial product ($175) that will batch
    extract metadata
    Metadata Miner Catalogue PRO software
    http://www.download3000.com/download-count-home-3541.html

  • Filename lenght error when organising library

    In Itunes 6 using ; Advanced / Collecting library content
    itunes collects my previously recorded some +3000 songs.
    Somewhere there is a song with a filename length that is to long. Itunes does not tell me what is the permitted max lenght. It does give the offending filename but replaces that message with an error message within 0.1 second so I cannot read it.
    Any solution?
    Thanks
    Peter

    Any help please...

  • How many characters can be in filenames

    There seems to be a difference in how the MAC and PC handle filename length in our photo department. Is there a maximum character length for filenames. Where does one find out this kind of information?

    Check out this page and it should give you an answer.<br />http://en.wikipedia.org/wiki/Filename<br /><br />Michael<br /><br /><br /><[email protected]> wrote in message <br />news:[email protected]..<br />> There seems to be a difference in how the MAC and PC handle filename <br />> length in our photo department. Is there a maximum character length for <br />> filenames. Where does one find out this kind of information?

Maybe you are looking for

  • Time Machine won't automatically back up

    A little while ago I had a problem with my audio plug ins preventing some of my music programs functioning properly. I couldn't trace the exact file in the library so decided to overwrite my library with a previous version from my time machine disk.

  • Webhelp topic not opening in Safari directly

    In an application that runs in Safari and has Webhelp, when you click the app's Help button from a page (.NET) in the app, the page's help topic should open. Instead, the help's TOC page opens instead. Help is developed in RoboHelp x5. Is some change

  • Staying on the edit page after posting

    There's something that I can't get to work and probably is not difficult at all. I want users to stay on the editpage after posting the form. I thought to do it in the processEdit method. By creating an url and give this as a return value. But I keep

  • Upgrade from Oracle 9.2.0.4 to 9.2.0.8 changes LIBCLNTSHR library name

    I am trying to upgrade Oracle 9.2.0.4 to 9.2.0.8 on Open VMS 7.3-1 running on an alpha ES40. The upgrade changes the LIBCLNTSHR library to use the install ID in the library name and logicals that point to the library. My problem is related to the fac

  • Overall Block in R/3 and CRM

    Dear Friends, I work in CRM 5.O & ECC 6.0 nad Mobile Sales. Problem - If the Customer "X" is going for Overall Block (T.Code - XD05) in R/3 the same will be updated in CRM in BP ( T.CODE) - Status tab or in If I create the Sale order in CRM for the s