Mulitple Files

When i add my songs to the itunes library some songs end up being in there multiple times.
For instance i might have 3 separate Blackbirds by the beatles from the same cd and location.
does it have something to do with itunes converting the files to m4a? If so why would they still add the wma files to the library anyway?
Any ideas on how to fix this?

Something to try.
Open the PDF that contains the combined files.
Then, from the menu, select Advanced > PDF Optimizer
In the PDF Optimizer dialog, click the "Audit space usage" button (upper right).
The audit will provide information that you may be able to use to configure PDF Optimizer settings such that the file size might be reduced.
Be well...

Similar Messages

  • Open/Create and write to mulitple files

    I am trying to do high speed data acquisition, and save data to file.  I will acquire a large number of data, so saving to just one file would result in my file blowing up in size.  Hence I would like to save my data to mulitple files.  I am trying to figure out how to open multiple files, then chose which file to write to.  My approach is to open/create multiple files and save their refnum in an array.  Then i would like to pick which file to write from this array.  I have attached my VI, whatever I have so far.  I seem to get errors like, "Duplicate path" or " An input parameter is invalid. For example if the input is a path, the path might contain a character not allowed by the OS such as ? or @."  How would I get started with this problem?
    Solved!
    Go to Solution.
    Attachments:
    Create & Save to Mulitples Files.vi ‏24 KB

    Figured it out...
    sorry for the trouble!

  • Mulitple File Downloads in AIR

    ** EDIT **
    Just tested. I was throttling the downloads to 28kbps. Think
    there must be a timeout on the file functions, as when it was reset
    without throttling, the file downloaded 100%. Is there a way to
    reset/remove a timeout on a URLStream?
    Good morning all.
    I'm having trouble with a file download component I've
    written. It worked fine debugging, but when testing an installed
    version of the application, there seems to be a problem with the
    loop, and files not completely downloading.
    I have tested, and one file in the loop is writing to the
    directory (event.complete action) at about 45%.
    How can I check if the total bytes downloaded is the same as
    total available, and if not, force it to carry on the download for
    that particular item?
    The code for the page is below:
    public function Update():void {
    if(appModel.fileArrCol.length > 0) {
    var urlReq:URLRequest = new
    URLRequest(appModel.fileArrCol[0][1].toString());
    trace(urlReq.url);
    urlStream = new URLStream();
    urlStream.addEventListener(IOErrorEvent.IO_ERROR,
    onStreamError);
    urlStream.addEventListener(ProgressEvent.PROGRESS,
    progressHandler);
    urlStream.addEventListener(Event.COMPLETE,
    fileTransferHandler);
    urlStream.load(urlReq);
    private function fileTransferHandler(event:Event):void {
    urlStream.readBytes(fileData, 0, urlStream.bytesAvailable);
    var fileLoc:String = appModel.fileArrCol[0][2].toString() +
    appModel.fileArrCol[0][0].toString();
    var file:File =
    File.applicationStorageDirectory.resolvePath(fileLoc);
    var fileStream:FileStream = new FileStream();
    fileStream.addEventListener(Event.CLOSE, fileClosed);
    fileStream.addEventListener(IOErrorEvent.IO_ERROR,
    onStreamError);
    fileStream.openAsync(file, FileMode.WRITE);
    fileStream.writeBytes(fileData, 0, fileData.length);
    fileStream.close();
    trace("File " + appModel.fileArrCol.length + ": " +
    appModel.fileArrCol[0][0].toString());
    private function onStreamError(event:IOErrorEvent):void{
    //Alert.show("Invalid Username or Password!","Warning");
    this.showCloseButton =true;
    btnUpdate.visible = true;
    trace(event.text);
    private function progressHandler(event:ProgressEvent):void {
    /* bar.setProgress( Number(event.bytesLoaded /
    event.bytesTotal), 1 ); */
    bar.setProgress(event.bytesLoaded,event.bytesTotal);
    progLabel.text = "Downloading " +
    Math.round(event.bytesLoaded / 1024) + " kb of " +
    Math.round(event.bytesTotal / 1024) + " kb " +
    (appModel.fileArr.length - 1) + " files remaining";
    private function fileClosed(event:Event):void {
    // run a progress bar or sqlite table update here
    appModel.fileArrCol.removeItemAt(0);
    if (appModel.fileArrCol.length > 0){
    Update();
    } else {
    progLabel.text = "Uploads Complete";
    var thisServerVersion:String =
    appModel.fileDownloadServerVersion;
    var thisDescription:String =
    appModel.fileDownloadDescription;
    var thisDownloadDate:String = appModel.fileDownloadDate;
    // store the file download details within the database table
    if(appModel.checkFileDownloadHistory(thisServerVersion).valueOf()
    > 0) {
    // a record matches the version number in the xml. do
    nothing
    } else {
    appModel.storeFileDownloadHistory(thisServerVersion,thisDescription,thisDownloadDate);
    // close the box down
    PopUpManager.removePopUp(this)
    public function init():void{
    btnUpdate.visible = false;
    this.showCloseButton = true;
    if (appModel.urlAvailable){
    Update();
    }else{
    Alert.show("No Network Connection Detected","Message");
    this.showCloseButton =true;
    btnUpdate.visible = true;
    public function titleWindow_close(evt:CloseEvent):void {
    PopUpManager.removePopUp(this)
    The application reads the number of files from an xml file on
    the server. That works fine, but I think the loop is wrong. In
    debug, it traces the file names without a problem
    Please please please can someone help me? I need to get this
    sorted and resolved by this lunchtime.
    Many thanks in advance,
    Matt

    http://kb.mozillazine.org/Unable_to_save_or_download_files
    Separate Issue;
    Your System Details shows;
    Installed Plug-ins
    Shockwave Flash 16.0 r0
    Shockwave Flash 11.9 r900
    Having more than one version of a program may cause issues.
    Grab the uninstaller from here:
    '''[http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-windows.html Uninstall Flash Player | Windows]'''
    '''[http://helpx.adobe.com/flash-player/kb/uninstall-flash-player-mac-os.html Uninstall Flash Player | Mac]'''
    Then reinstall the latest version.
    Flash Player '''v16.0.0.257<br>https://www.adobe.com/products/flashplayer/distribution3.html'''
    Shockwave Director '''v12.1.6.156 http://get.adobe.com/shockwave/'''

  • Picking up mulitple files from same location - FTP?

    I have recently completed ther TBIT40 - Exchange Infrastructure Fundamentals course.
    One of the questions I raised to the tutor was picking up many files from the same outbound folder (Non R/3), with variable names, via FTP.  These files will be time and date stamped.
    Unfortunately the Tutor was unable to answer this question for me...
    How do I specify a variable file name in the file system access parameters in my communication channel?
    Can anyone point me in the right direction on this?

    Hi Barry,
    Where was your course held out of interest ? Ours was in Holland.
    Wildcards definitely work as we tried this on the course.
    Alternatively, you could make sure the directory you are processing only has files in for this process and nothing else then you could process everything regardless of the name just use .
    Good luck with your processing.
    If this helps, please award the points as so few people do
    You can do this by clicking on the yellow star next to my answer.
    Cheers
    Colin

  • Reading mulitple files

    Hi all,
    Im doing a program in which i have to read files continuously.I have all the file names in a string array.Here is my code
    String[] ar=new String[5];
    ar[0]="first.txt";
    a[4] ="fifth.txt"
    int len=ar.length;
    for(int i =0;i<len;i++)
    br = new BufferedReader(new FileReader(ar)
    ss = new String[len];
         while((br.read(data)) > 1)
              ss[i]=new String(data);
         //System.out.println(ss[i]);
    is it correct its printing only the first file without the first letter..
    How to print all files data?

    this is the data declaration:
      char[] data=new char[200];                          
                   ss = new String[arr.size()];
                  while((br.read(data)) > 1)
                       ss=new String(data);
    i dont know the file size so simply gave char[200].am i have to use thread for multiple file reading? Aim of the program is after reading the first file .some processing then the second..etc                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Calling Ant Tasks on mulitple files

    Hello, I was wondering if this was possible in Ant. I have a directory with multiple sub-directories. In each of those subdiretories there is a build.xml Ant file. Each one of them has a Target that I run, called "build".
    Is it possible to create a main Ant Build file that will iterate through every build.xml file it finds in the sub-directories and call the target "build" on it? I couldn't find a way to do this. Thanks!

    Hi,
    I hope the following Script may help you
    build.xml
         |
         --dir
             |
             build.xml
             |
             dir1
                |
                build.xml
             |
             dir2
                |
                build.xml
    The master build.xml may call the build.xml which is commmon to all sub-directories
    <project>
      <target name="Master build" description="The master build" >
        <ant antfile="/dir/build.xml" target="build_directories" />
      </target>
    </project>
    "dir" directory may have a common build.xml which call the build.xml of each and every subdirectory.
    <?xml version="1.0" encoding="UTF-8"?>
    <project default="build_dir">
         <target name="build_directories" description="Builds sub directories" >
              <subant>
                   <fileset dir="../dir">
                             <include name="*/build.xml" />
                   </fileset>
              </subant>
        </target>     
    </project>
    subdir1 and subdir2 may have each and own copy of build.xml.
    <?xml version="1.0" encoding="UTF-8"?>
    <project default="make">
    <target name="Common-build" description="Build Common jar">
         <jar destfile="test1.jar" basedir="." />
    </target>
    </project>Please let me know if you've any queries/suggestions
    Cheers,
    Ajaykumar.sr

  • Error Message when creating file from INDCS3 files

    Running, Windows XP, Creative Suite CS3,, Acrobat 8 Pro, and all updates. Unable to create a PDF using the "mulitple files" selection and selecting INDCS3 files on a server, receiving the following error:
    -----Invalid value for parameter 'using" of event 'exportFile'. Expected PDFExportrPreset, but received "standard". Files all open in InDesignCS3, but no PDF file is created. Able to create PDFs directly from IND without any problems.----
    Was able to handle this function in CS2 without any problems. Can you tell me where we are going wrong?
    KEN PANTHEN, Albany, NY

    does it happen with local indesign files, or just those on that (particular) network?

  • File name in Split messages with Message mapping

    Hi everyone,
    I split my incoming message into multiple files based on the Order Numbers.
    Also I have a particular file naming convention I need to use.
    Its someething like RTG746932746.63749
    Now, I have given the field file name along with my target data type and mapped it like the format i want alogn with order Number to make it unique.
    But when I dwnload files, I get only one file.
    Whereas if I just use the option, Add time stamp in the communication channel, it works fine, giving me 3 order files if i have 3 orders.
    But I cannot have ' -' in my file name.
    How do i resolve this?
    Thanks,
    Vinotha M

    Is teher any thing else I can do change the file name and have mulitple files downloaded without it being overlapped.
    Please help resolve
    Thanks,
    Vinotha M
    Edited by: Vinotha M on Feb 4, 2009 4:10 PM

  • File concatenating program does not work

    Hello, im quite new to java therefore it may only be a simple solution.
    The program reads mulitple files off the command line and then should join them up (concatenate) in a new file called "NewFile".
    The problem is it only prints the content of one of the files to the new file.
    Here is my code:
    /*Write an application which concatenates files. The name of
    *each file is supplied on the command line. The output file
    *consists of all the contents of the first file, followed by
    *all the contents of the second file, and so on. One of the
    *slides in the lecture may help.
    import java.util.*;
    import java.io.*;
    public class Concatenate
         public void process (String[] argStrings) throws Exception
              String fileName = argStrings[0];
              String contents = null;
              System.out.println();
              System.out.println("Conatenated contents of files:");
              System.out.println();
              for (int index = 0; index < argStrings.length; index++)
                   Scanner sc = new Scanner(new File(argStrings[index]));
                   contents = sc.nextLine();
                System.out.println(contents);
                   sc.close();
              PrintStream output = new PrintStream("NewFile.txt");
              output.println(contents);
            output.close();
    }Thanks anyone
    John

    // put this before the for loop
    PrintStream output = new PrintStream("NewFile.txt");
    // put this inside the for loop
    output.println(contents);Now, do you understand why you have to do that?

  • File Channel sequential processing based on file names

    Hi,
    I have a requirement in a sender file channel.
    There are mulitple files with different file names, I want these files to be processed in sequence based on the file name.
    For example.
    The files lets say are A3_1, A2, A1,A3_2.
    I want to process A1 then A2 and then A3.
    Please suggest methods to implement the same, I think an adapter module should help, please throw some light on the same.
    Regards,
    Varun.

    Varun,
    In that case I think you need to consider BPM. The file adapter does not support 'advanced' techniques for the sequence in which it polls files.
    The process would then be:
    - Use the adapter specific identiers for the file adapter to include the file name (/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions)
    - Create a message mapping that puts the file name from the dynamic configuration into a field in the message type
    - Create an integration process that receives the files from this adapter inside a loop step (/people/daniel.graversen/blog/2006/09/07/using-a-bpm-to-collect-messages-for-a-set-interval-of-time)
    - You can now create an interface mapping that sorts the messages according to their filename and then send the messages to the receiver one by one (EOIO?).
    Kind regards,
    Koen

  • Looking for an add in to separate classes in distinct files

    I'm working on a old program. .cs files are used to store multiples classes.
    Do you know a visual studio extension able to split multiple classes .cs files in separate files ?
    Tanks for help
    Laurent

    Hi Laurent,
    Maybe the re-sharper is what you want to get.
    Reference:
    http://stackoverflow.com/questions/2652901/text-manipulation-split-classes-in-a-single-file-into-mulitple-files
    In addition, since it is not the VS IDE usage issue, I am moving your question to the moderator forum ("Where is the forum for..?"). The owner of the forum will direct you to a right forum.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • File:reference help

    how do i get the dialog box to open only once and have
    multiple files downloading. I dont want to use zip or any
    compression folder types.
    This is for a standalone player

    look at the help files for the fileReference class, it's
    pretty straight forward. copy the example and try to get it to
    work. then mold it into your project. the mulitple files is tricky
    but there are tutorials on the web about it...

  • File Adapter - Sort Input file

    Hi There,
       I am trying to process the file I receive in XI for an external system ( Flat File) .
    I need to sort the file and then add de-limiters.
    Do I do this in the adapter or in during mapping.
    Any help is appreciated.

    Hi,
    <i>This file has many records. Several accounting documents are embedded in it.</i>
    >>>SO you need to sort these records right ?
    So it is a flat file.
    1) first of all you need to pick the file. So as you told file is a flat file right ? What is the delimter for the incoming file ? Based on this , you need to convert this flat file into field details with file content conversion option available in the Sender File Adapter configuration
    2) Now you need to sort the records. This you can do in the Mapping.
    3) If you want to send mulitple files into your Target system, you can do this in the XI with mapping and Receiver determination.
    To feel about flat file scenario in XI-
    /people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1
    /people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2
    Regards,
    Moorthy

  • PSE 10 Processing Multiple Files - Error

    Yesterday this was working; today it's not. When I try to process multiple files I get this error message:
    "Could not complete the Process Mulitple Files command because the disk is not available."
    I'm on a Mac - 10.6.8. The disk is not full.
    I am trying to convert Open TIF files to JPGS. And like I said, this was working for me yesterday.
    Here's what I've tried as far as troubleshooting:
    1. Going to your username>library>preferences and deleting:
    com.adobe.PhotoshopElements.plist
    Adobe Photoshop Elements 10 paths
    Adobe Photoshop Elements 10settings
    repair permissions and try again.
    2. restarting the editor while holding down command+shift+option, keeping the keys down till you see a window asking if you want to delete the settings file. I did.
    3. restarting the computer
    4. shortening the file names
    5. moving the destination file
    Still no success.  Any other suggestions out there that I may have missed?
    Thanks in advance for the help.
    ~Karen

    Can you please try shortening the containing folder name as well?
    Thanks
    Andaleeb

  • Retaining links when deleting multiple files

    Hi there,
    I need to delete a lot of files from a project, but I don't
    want to lose the links to those topics in other files. If I delete
    a single file, Robohelp HTML displays a dialog box that gives the
    option to keep references to that file in other files. This is the
    behaviour I want to achieve.
    When I try to delete multiple files, however, Robohelp
    doesn't give the option to keep the references and the links
    disappear from other files.
    Does anyone know any way to delete mulitple files and keep
    all references to those files? I really don't want to have to
    delete every topic individually!
    Many thanks
    Kate

    Hi Rick,
    Thanks very much for that quick reply. That's a good idea - I
    don't why I didn't think of it
    I deleted some files and they disappeared from Robohelp
    before my very eyes...then I tried again in another folder and they
    didn't disappear, but nasty red crosses appeared on their icons. It
    doesn't seem to matter whether I have Robohelp open or closed - the
    red crosses appear all the time now.
    Any ideas why some topics delete seamlessly, and Robohelp
    doesn't want to let go of others?
    Cheers
    Kate

Maybe you are looking for