"File with specified name and version number already exists. Result code= -48."   ...????

Recently I have been getting this error message when I try to record an audio track in Logic... "File with specified name and version number already exists. Result code = -48."  WHAT IS THE PROBLEM?????? It's making me furious!

Hi
As the message says, there is a file at the recording directory that has the same name:
http://support.apple.com/kb/ht1618
Try changing the name of the track (this sets the filename in later versions of Logic 9
CCT

Similar Messages

  • SWF name and version number for bug reports

    Hi,
    When users report issues we ask for a screen dump , but we would like the course version number and the SWF name to appear in the screen footer.
    We have looked at a number of options, but we are a bit stuck. 
    SWF name
    1/ Pipwerks mentions a Cp variable called cpORGSWFPath 
    "Informational variable. Provides the file name for the project’s main SWF. Appears to duplicate functionality of cpOrgSWFPath.NOTE: This value can only be obtained when the project uses an external skin. " for CP5
    http://pipwerks.com/2010/08/23/complete-list-of-variables-for-adobe-captivate-5/
    Does anyone know how to access this ?
    2/ We could manually enter it in the cpInfoprojecttname field, but it wont change if we update the file
    Version Number
    1/ The Scorm manifest creates a version number. Can I get the information from Scorm ?
    2/ My backup plan is to use fields intended for other purposes
    e.g cpInfoprojecttname, cpInfoDescription
    the following are not used
    - cpInfoCourseId
    - cpInfoCourseName
    http://forums.adobe.com/message/3201125
    rgds Renovator

    That's a recent version of Logic 9 correct?
    The problem centers around a name length limitation in all versions of Logic except 9.1 and upwards (I think it's Logic 9.1)  You've named an audio file with more than 30 (or 31) characters in Logic 9, unfortunately Logic 8 can't read the long name and sees it as a shortened name and a disk sector location.
    #23B269  is the location of the file on the disk and if you would've created the project in 8 including the long name, Logic 8 would've written the file to disk as "heather reco#23B269.wav" and would've been able to find it.
    To be on the safe side, when creating files in Logic 9 for use in 8, keep the file names under 29 characters, including spaces. Re-linking has to be done by hand, load the audio files needed into the bin and drop then in the correct track locations, Logic 8 will not be able to find the files with long names.
    This used to play **** when moving projects, a home studio person finished his CD, unaware he/she uses long file names. Copies all projects and files to an external disk and takes it to a professional studio for mixing. OOPS!! The file names with the sector locations are no longer valid, the sector location has changed... the project loads with scraps of files from different projects or loads with incomplete files.

  • Exporting text files with song names and artist names only

    I need help exporting a playlist as a text file. I know how to do this already,(right click playlist and select "export song list...") but when i open it up in notepad, it is unorganized and is very hard to read. I am burning a disc for my mom and pasting the playlist on the back of the cd cover. I dont want to type out every artist and song name. Help is appreciated.

    do you have a copy of Excel (or a different spreadsheet) on the PC, kevin? if so, try opening the text file with that. then it's relatively easy to remove information by deleting the columns of info that you don't want.

  • How to auto populate numerous pdf files with same name and address?

    I have numerous pdf files where a company's name and address will need to be entered onto each file.  Would there be a way to enter this information once, say on an excel file or something, and then have this information auto populate all the correct fields in each and every pdf file I have to fill out.  I am a complete rookie with Adobe Acrobat.  At any one's convenience please let me know or point me in a direction where I can possibly learn this for myself.  If Adobe offers this type of service please let me know which department to contact.
    Thanks,
    John

    If you were an InDesign user, you could layout the document there, and use the Data Merge feature to bring in the names and addresses from Excel. Then create a PDF of the resulting file which could be split into individual PDFs.
    There might be a way to do it similarly with Microsoft Word and Mail Merge.

  • Search multiple folders for files with same name and create single file

     I have a project where I need to search multiple folders for a file name and when found append data from each file to a single input file.
     Example
    root folder to start search
    \\servera\sales
    \\servera\it\salesa\cmmstr.txt
    \\servera\it\salesb\cmmstr.txt
    \\servera\it\salesc\cmmstr.txt
     I need to create a a single cmmstr.txt on the root folder. I would like it to be able to run this with parms to pass in folders to search and file names to search and single file name to create. I'm going to have a least 10 differnt files to
    search for and create output file for. The folders to search
    will somewhat be static.
     Thanks.

    I tested this out on my own seat and I think it should work for you. I wrote it as a function, all you have to do is pass the root folders you want to search and the file your looking for. The function will then search that directory and all sub directories
    for that file name. you will also have to provide it a file to append to, if the file dosen't exists the function will create it. If you run into an issues let me know and the links Mike
    Laughlin posted are a great resource.
    Function Search-Files{
    Param([String[]]$Locations, $SearchFor, $AppendTo)
    Begin
    If(-Not (Test-Path $AppendTo)){New-Item $AppendTo -ItemType File -Force}
    Process
    ForEach($Location in $Locations)
    $Files = Get-ChildItem -Path $Location -Filter $SearchFor -Recurse
    ForEach($File in $Files)
    Get-Content -Path $FIles.FullName | Out-File $AppendTo -Append
    End{}
    Search-Files -Locations "\\Server1\c$\Temp", "\\Server1\c$\Test1" -SearchFor "Install.cmd" -AppendTo "C:\Temp\Search.log"

  • Generating CSV file with column names and data from the MySQL with JAVA

    Hi all,
    Give small example on ...
    How can I add column names and data to a CSV from from MySQL.
    like
    example
    sequence_no, time_date, col_name, col_name
    123, 27-apr-2004, data, data
    234, 27-apr-2004, data, data
    Pls give small exeample on this.
    Thanks & Regards
    Rama Krishna

    Hello Rama Krishna,
    Check this code:
    Example below exports data from MySQL Select query to CSV file.
    testtable structure
    CREATE TABLE testtable
    (id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
    text varchar(45) NOT NULL,
    price integer not null);
    Application takes path of output file as an argument.
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.Statement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    public class automateExport {
        public static void main(String[] args) {
            DBase db = new DBase();
            Connection conn = db.connect(
                    "jdbc:mysql://localhost:3306/test","root","caspian");
            if (args.length != 1) {
                System.out.println(
                        "Usage: java automateExport [outputfile path] ");
                return;
            db.exportData(conn,args[0]);
    class DBase {
        public DBase() {
        public Connection connect(String db_connect_str,
                String db_userid, String db_password) {
            Connection conn;
            try {
                Class.forName("com.mysql.jdbc.Driver").newInstance();
                conn = DriverManager.getConnection(db_connect_str,
                        db_userid, db_password);
            } catch(Exception e) {
                e.printStackTrace();
                conn = null;
            return conn;
        public void exportData(Connection conn,String filename) {
            Statement stmt;
            String query;
            try {
                stmt = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,
                        ResultSet.CONCUR_UPDATABLE);
                //For comma separated file
                query = "SELECT id,text,price into OUTFILE  '"+filename+
                        "' FIELDS TERMINATED BY ',' FROM testtable t";
                stmt.executeQuery(query);
            } catch(Exception e) {
                e.printStackTrace();
                stmt = null;
    Greetings,
    Praveen Gudapati

  • While saving Bex query with Technical name, it says Query already existing

    Hi,
    I am facing a problem. While saving a query withy its technical name (for example ZQYZMPR_01), it says that query is already existing. But when I search for the query in all tabs like Favourites, Roles, Infoprovider It is not found.
    I also checked a view V_REP_JOIN. In this view I find Query (ZQYZMPR_01) in MODIFIED version.
    I want to use my previous query instead of creating new one.
    Suggest, how can I retrieve my previous query that I am unable to search for.

    Saurabh
    Searching with descriptions may lead to confusion as there may be similar  descriptions to a query but just one technical name.  Check the query 'where used list' you may find answers.
    Can you check the query in RSZCOMPDIR ? If the query exist here, it must be there in the system.  Do the search with exact technical name ZQYZMPR_01 or ZQYZMPR*, you should be able to find.  Do not search in specific areas like roles etc..search directly by inputting the tech. name.
    Ferdinando - you can delete the query in RSZDELETE transaction.  While doing so, it will prompt for removal from all areas like roles, workbooks etc. Say 'yes' and delete, you will be able to assign the technical name to another query.
    Ramesh

  • Nagging One-Time .exe files with multiple names and NO company name associated V.11.0.10

    Multiple attempts to load and have an unsigned file execute multiple times a day.  see below;  Could these programs come from Adobe, and why would no company name be associated with the file?
    WinPatrol ALERT: New or Changed Program – Startup Program
    A new automatic startup program has been detected.
    Type: RunOnce
    Often required for software updates and new installations.
    This program should only run once when you restart your computer.
    This program could slow your computer by running in the background.
    Was this program expected and something you want active all the time?
    No description found.
    Company name not included in this program
    Accept Change / Reject Change?
    CHANGE REJECTED each time.
    Seems to display after opening a PDF file.
    Date: 02/04/15
    exe FILE NAME: 1423065554
    02/05/15  1115AM
    1423156848
    02/05/14  1140AM
    1423157865
    02/05/15  1150AM
    1423158578
    02/05/15  1229PM
    1423160904
    02/05/15  0120PM
    1423163901

    Adobe had this issue Multiple RunOnce keys created | 11.0.10, 10.1.13 | Acrobat, Reader

  • How can I see file with chinese name in Sunray USB storage?

    hi, All
    I installed Sunray4u3 on Solaris0805. the application server is win2003EE.
    I accessed usb storage from win2003, but I can only see files with English name , and could not see files with chinese name. Why? who can help?
    best regards
    xiong wei

    You might want to make sure your credit card is listed in the billing information associated with your Apple ID (see http://support.apple.com/kb/ht1918).
    Also, to change the From name that appears when you address emails on and iOS device, go to Settings>Mail,Contacts,Calendars...tap your iCloud email account, tap you iCloud account at the top, tap Mail at the bottom, then enter the name you want to use in the Name field at the top.
    To change the From name on your Mac Mail, go to icloud.com, sign into your account, open Mail, click the gear shaped icon on the bottom left and choose Preferences, go to the Accounts tab and enter the name you want to use in the Full Name field and click Done.  Then quit Mail on your Mac and re-open it.  Your new From name should now appear in the drop-down list when you compose a new email.

  • Static Files with same name. How does apex determine which files to serve?

    Hello, I'm using apex 4.2.1.00.08 and I cannot figure out how apex manages the static files and cannot find any help in the docs (other that some high level UI description).
    The application is serving some file and I cannot find which one it is in any easy way.
    I have a workspace where there are several files that have the same name, and I cannot understand how apex figures out which one to serve, and also don't understand what is value of associating a file with an application.
    There are files associated with application 0, which don't appear to show up in the "shared components", but can be seen as
    SELECT *
    FROM wwv_flow_files
    WHERE flow_id = 0;
    and can apparently only be deleted using "SQL Commands" inside apex.
    the URL called is something like
    wwv_flow_file_mgr.get_file?p_security_group_id=13498126233076320&p_fname=myfile.css
    so apparently the only parameters that matter are the workspace and the file name. The associated application is irrelevant.
    apparently files linked to flow_id 0 have precedence over all the other files ...
    Thanks for clearing up a bit of "fog" on this issue.

    VC wrote:
    Go to that application > shared components > Static files you should see the file.the problem is that there are multiple files with that name, and that sometimes the file being served is linked to application "0" and it doesn't show in the "shared components" interface ...
    I have a workspace where there are several files that have the same name, and I cannot understand how apex figures out which one to serve, and also don't understand what is value of associating a file with an application.Static files can be uploaded to apex with optionally associating with an application within that workspace.
    Files associated with an application are referenced using *#APP_IMAGES#*
    Files not associated with an application are referenced using *#WORKSPACE_IMAGES#*I referenced with #WORKSPACE_IMAGES#, but now I see that if I use #APP_IMAGES# the URL generated will also contain the application ID. This would help to discriminate between different files with the same name but linked to different applications ...
    There are files associated with application 0, which don't appear to show up in the "shared components", but can be seen asWhy are you particularly interested in application 0?Because somehow APEX puts the files that I uploaded there ... they can be seen selecting from wwv_flow_files. Do they take precedence over all other files with the same name?
    Filename is unique for the given workspace[and application]I disagree. I have multiple files with the same name ... the root of this problem ...
    so apparently the only parameters that matter are the workspace and the file name. The associated application is irrelevant.How is your static file referenced??
    But not always, try associating an static file with and application and reference it using #APP_IMAGES# instead of #WORKSPACE_IMAGES#
    See
    http://docs.oracle.com/cd/E37097_01/doc/doc.42/e35125/concept_sub.htm#BEIDCGAJ
    http://docs.oracle.com/cd/E37097_01/doc/doc.42/e35125/ui_file_manage.htm#HTMDB06011
    Thanks, but the documentation doesn't give much details ... apparently files referenced with #WORKSPACE_IMAGES# can still resolve to files linked to specific applications ... I would like to understand the actual workflow for the various cases (file references with APP_IMAGES, referenced with WORKSPACE_IMAGES, file associated with the application, with another application, with no application, with application "0" ...).
    Also, I find it somewhat misleading that you can have files associate with applications that don't exist anymore (e.g. have been deleted).
    Edited by: GChierico on Apr 11, 2013 2:16 PM

  • Need dissociation street name and street number from one column?

    Hi all,
    I have one table A with one column with Street name and street number.
    And I was adding second column and now need update this second column with street number
    and delete street number from first column.
    How can unpluging street name and street number from one column?
    (street name are 90% char, number is 100 numeric, in 10% street name name
    starts with number (1.HEROES 223, 1.HEROES 224...)
    Gordan

    Hi,
    Solution of Mr. Wijk come first, however I like to post (it's very similar and incomplete, I know...). Supose you have a table call address (use position -1 like Mr. Wijk to look backward). It's better in cases like '1.My Street 123' (the space before the number is very important)
    SELECT substr(a.street_name,
                  1,
                  instr(a.street_name,
                        -1) - 1) street_name,
           substr(a.street_name,
                  instr(a.street_name,
                        -1) + 1) street_number
      FROM address a;Regards,

  • A file with that name you specified already exists.

    I'm using Deamweaver 8.0.1 on a Mac. My server is right next
    to me and is also a Mac. Both Mac's are on OSX10.4.6
    I connect to the server vis AppleTalk local network.
    I guess I'm having a premission problem but whenever I try
    and synchrnize I get an error like this:
    Started: 6/14/06 8:39 AM
    admin.php - error occurred - An error occurred - cannot put
    admin.php. A file with that name you specified already exists.
    File activity incomplete. 1 file(s) or folder(s) were not
    completed.
    Files with errors: 1
    admin.php
    Finished: 6/14/06 8:39 AM
    I can manually copy files without error or insedent...
    I have tried coping the entire site to the server, mannually,
    again. I have deleted the site reference in Dreamweaver, quit and
    then re-launch Dreamweaver and create a new site.

    Update
    I changed over to FTP connection with the host, just incase there was some weird wrong with my server. And FTP works fine from the command line, but Dreamweaver is seems goofed.
    I "tested" the connection from the manage sites menu, its ok. The trouble remains when i upload files. Now, Dreamweaver says "error occured - An FTP error occured -- cannot put [file name] Access Denied. The file mau not exist or there could be a permission problem."
    I have full access to the vsftp.conf file and I've allowed,
    write_enable
    local_mask
    Any thoughs? Its entirely possible there is a simple explanation. I had this working before. Its just not working now.
    Xtian

  • Spotlight/Finder can't find a file, yet when I search the timecapsule for they find it. If I try to restore the file I get "file with that name already exists...." What is wrong?

    I was trying to find a file (iTunes Backup). When using finder/Spotlight they couldn't find the file.
    I then opened up my timecapsule and searched for the file....tick-a-de-da it found it in yesterdays backup. I attempted to restore the file and got the prompt "A file with that name already exists in this location, would you like to keep both, replace the file or cancel the request.
    So if the file is there why can't spotlight/finder find the file??
    If it helps I get this from the terminal when checking if indexing was enabled.
    $ mdutil -s -a
      Indexing enabled.
    /Volumes/Data:
    2014-11-18 18:09:39.542 mdutil[1472:572531] Metadata.framework [Error]: mdsCopyStoreAttributes failed: (8) (os/kern) no access
      No index.
    /Volumes/Time Machine Backups:
      Indexing and searching disabled.
    /Volumes/Time Machine Backups/Backups.backupdb:
      Indexing enabled.

    Hi Danielle,
    Is there any possibilty that some of your files (a VI or DLL?) have been moved, renamed, or deleted? Also, what version of LabVIEW are you using and are you using any .NET DLLs? Another option to consider would involve VISA or DAQmx property nodes. Are you using any of these property nodes in your code? Here is a KnowledgeBase article to describe more about the VISA and DAQmx property nodes in a source distribution:
    Error Creating Source Distributions Involving rc Files: http://digital.ni.com/public.nsf/allkb/833BFD5E9CA0224886257584004DAA4C?OpenDocument
    I hope this is able to help.
    Anna L
    Applications Engineer
    National Instruments

  • You already have a schema opened on this file with another name: abc

    I am trying to create a model for an XML file, when I clicked on "Objects to Reverse" checkbox under "Selective Reverse" tab, I am getting the following error:
    java.sql.SQLException: You already have a schema opened on this file with another name: abc
    I have created a Data Server in Topology whose schema and workschema are "abc" and logicla schema is "Labc".
    Where is the mistake going in?

    That is because you can only connect to a file in read/write mode once at a time. When you connect to a file without specifying ro=true (e.g. Read Only=true) in the URL, the file is locked and you can’t connect to the file from another instance until the original connection is dropped. I assume since you are trying to connect to the file multiple times that you mean to connect in readonly mode. To do this, like I mentioned earlier, simply add ro=true to your URL and you should be all set. Note: you may need o restart your JVM for chnges to take effect. Let me know if that works.

  • While saving multiple attachments from mail, files with same name are added and not replaced

    While saving Multiple Attachments from Mail, existing file with same name are not overwritted but new files are added in the folder.

    Bjørn Larsen a écrit:
    Hi all
    Hope to get some help with Elements Organizer.
    I have 12-15 years of digital photos that I now want to import into my newly aquirede Adobe Elements Organizer / Photoshop. Since my Nikon names the files with continous numbers from 0001 to 9999 I have multiple files with the same name although they are not alike at all. My previous software had no problems with that since I keep the photos in separate file folders based on import date. I generally import photos after each event and so name the folder with the date and some event info (e.g. 2014.12.24 - Christmas at grandparents).
    That is a common situation, I have the same limitation for files not going over 9999 on my Canons...
    Now - when I import my photos into Elements Organizer I get a lot of error messages with "same name exist .....) Hmmmmmmm
    Please sate the exact wording of the error message, I have never seen a message stating 'same name exist...' or equivalent; only messages about files already in the catalog. Files already in the catalog mean that some files have the same 'date taken' and file size in Kb.
    Any suggestions. I'm using a mac and tried to rename files based on date taken. The mac can do that but it takes ages to go into each folder and run the renaming script there.
    I also use a similar folder creation scheme (such a date naming is the default for the downloader). That way I never get a message about duplicates for the same file names.
    However - I can't be the first or only person with this problem so I figure that some workaround must be known out there. Maybe the import action can recognize date taken or - well. Thank you very much in advance if you can help me out here.
    You can alsways set the downloader to rename the imported files with a unique new name, there are many options in the 'advanced' dialog of the downloader. I don't know about Macs, but I don't thing there is a difference.

Maybe you are looking for

  • Wi-Fi not working on MSI GT60

    Hello All, For last two weeks, wi-fi has not been working on my windows 8 machine. Wi-Fi switch is a software based switch on my machine. It is ON when I start the machine. But it does not list any wi-fi networks (I know the existence of the networks

  • Help Required in Tuning a SQL

    Hi All, We have a query which is taking hell lot of time in production due to Full Table Scan on the table AP_ACCOUNTING_EVENTS. We have then tried to force the index AP_ACCOUNTING_EVENTS_N1 on the query by applying hints. Now the table is doing a ra

  • Sort messages in Mavericks Mail

    Hello, I upgraded from Snow Leopard directly to Mavericks. With respect to the previous version of Mail, I find the following functions not easily accessed as before. In a work environment this means wasting more time to do the same thing. 1) There i

  • MRBR - Release Blocked Invoices

    I am experiencing that MRBR release invoices that have just been blocked due to variance. This without any change having taken place in the PO or anywhere else. E.g. 1) PO. 1 item of 680 USD. 2) GR. 1 item of 680 USD. 3) IR. 1 item of 360 USD. Blocke

  • Where do we control packet sizes in IDoc's processing.

    Hi Can you please let me know 1) how we can control the Packet Size while processing Idoc's? 2) How to find out how many Idoc's got / can be processed in one packet? 3) Where can these Packet size settings be made? Satish.