Allow files being copied to merge with existing files instead of replacing

As a windows switcher, I am used to the fact that I can drag Folder A with Folder B and C inside on Hard Drive 1 over to Folder A with Folder D and E inside on Hard Drive 2 and it would just merge the two giving you Folder A with B,C,D and E on hard drive 2.
Why on God's green earth can't OS X do this!?!? I even asked my father-in-law who is a retired Tier 2 apple tech support and he said it can't be done but to post here.
Apple! Give us the option to replace or merge

Is funny to see people saying that MAcOs is not windows
If we talk about the fact that the 2 os are totally different because they work in a different way is one thing; while if we say that the UI (that's what finder is...a UI, same for IE on Windows...you can call it AERO or whatever you like, but is IE in the end) is totally different we are going to say something that is incorrect.
The left click is left click on any OS, same for the right one that calls the contextual menu...these are things that were set up as default by almost all the modern os that has a UI instead of being textual; so if MacOs wanna replace instead of merge is a problem for who use Unix/solaris/bsd/linux, Windows, Beos, AmigaOs and others.
The point is not that me, the user, adapt to the os, but is the OS that must do what i want, because i am the one that use it; so would make more sense to add features like every other os does, and make happy the users, instead of delivering this software ultra simplified (except the pro apps) that simply says "this is what i wanna give you, use it, adapt to it and don't try to do something else except what i let you to do"....are we free to operate an os in the way that we want? The answer is no
Doesn't cost too much to do operations in a way or another, or get used to an os or another, but in the end the lack of a replace (like the lack of a move instead of copying) is something that surprise me...seems that Apple while writing functionality, decide that some has to be cut off...probably because they have no clue how to resolve an issue or being lazy (somebody said the issue with the duplicates in Itunes, or the impossible management of more than one library without loosing ratings and playcounts?).
No offense, but if something can be done with AmigaOs, that is based on Unix (like MacOs) and more than 15 years old, i can't really understand why MacOs has to bother users in this way without giving choices to decide how they wanna copy their folders
an example above all: i have poser, a lot of material come in zip files where the runtime folder is zipped, so on pc is enough to decompress the zip file and copy it into the main poser directory, so the files inside the runtime folder will merge (we are talking of 10-20 folder nested in each other...takes 10 minutes to do the operation by hand as suggested ); I tried the same on MAc and the result was that i lost an afternoon installing stuff without realizing that i was not merging but replacing LOL
If any of you has poser he knows what i am talking about....and the solution? launch bootcamp or parallels and then copy the runtime folder from the pc drive to mac drive
Tidal...long story short.....get parallels and organize the files with Windows, then copy the folder on Mac and replace it
Message was edited by: darshie76

Similar Messages

  • Import of mp3 file suddenly causing sync issue with existing files. CC 2014

    Hi all,
    I imported an mp3 audio file and dropped it into my comp which contained other Video (422 ProRes) files that contained audio.  When I RAM Previewed the audio for the entire comp slowed down and fell out of sync.  I can't seem to find any way to correct this.  I have tried both Comp Settings and Interpret Footage but I can't seem to find a fix.  Anyone know of (or have experienced) this issue and know of a fix? P.S. I know mp3 files are not optimal for use, but I used it anyway, and have in the past without issue.
    Thanks,
    JB

    After rendering out two sequences that had the audio sync/slowing issue, it appears that this is an issue with RAM preview. The renders' audio are in sync and play at the correct speed.  The issue of the RAM preview remains.  It seems like a bug at this point.  I updated to latest (13.2) version of AE CC 2014, reopened project, RAM previewed the comp and the audio was playing correctly.  I RAM previewed again immediately again, and after a spinning beach ball, it plays back out of sync and slow again.

  • I formatted by PC which erased the iTunes software as well. Now when i try to backup my iPad the new iTunes doesn't have access to my existing files. The option is to erase the current content of my iPad and replace it with existing files on my PC.

    I formatted by PC which erased the iTunes software as well. Now when i try to backup my iPad the new iTunes doesn't have access to my existing files. The option is to erase the current content of my iPad and replace it with existing files on my PC. How do i get access to the preivous library?

    Drrhythm2 wrote:
    What's the best solution for this? I
    Copy the entire /Music/iTunes/ folder from her old compouter to /Music/ in her account on this new computer.

  • What apple software allows me to open and work with excel files?

    What Apple software allows me to open and work with Excel files?

    Numbers, OpenOffice, Microsoft Office 2008 or newer, or similar products. Microsoft Office 2004 doesn't work in 10.7.
    (86805)

  • HT3775 Is the Codec listed adjacent to the file format the Codec used with that file format?

    Is the Codec listed adjacent to the file format the Codec used with that file format?

    Is the Codec listed adjacent to the file format the Codec used with that file format?

  • I want to drag and drop a file to a JText area with its file icon

    I want to drag and drop a file to a JText area with its file icon , but the problem is I cant show the file icon.
    Anyone knows this.
    this is my code.
    import java.awt.*;
    import java.awt.image.BufferedImage;
    import java.awt.datatransfer.DataFlavor;
    import java.awt.datatransfer.Transferable;
    import java.awt.dnd.DnDConstants;
    import java.awt.dnd.DropTarget;
    import java.awt.dnd.DropTargetDragEvent;
    import java.awt.dnd.DropTargetDropEvent;
    import java.awt.dnd.DropTargetEvent;
    import java.awt.dnd.DropTargetListener;
    import java.io.File;
    import javax.swing.*;
    import javax.swing.filechooser.FileSystemView;
    public class FileDrag extends JFrame implements DropTargetListener {
    DropTarget dt;
    File file;
    JTextArea ta;
    JLabel lbl;
    Graphics g;
    ImageIcon tmpIcon;
    public FileDrag() {
    super("Drop Test");
    setSize(300, 300);
    getContentPane().add(
    new JLabel("Drop a list from your file chooser here:"),
    BorderLayout.NORTH);
    ta = new JTextArea();
    ta.setBackground(Color.white);
    getContentPane().add(ta);
    dt = new DropTarget(ta, this);
    setVisible(true);
    public void dragEnter(DropTargetDragEvent dtde) {
    System.out.println("Drag Enter");
    public void dragExit(DropTargetEvent dte) {
    System.out.println("Source: " + dte.getSource());
    System.out.println("Drag Exit");
    public void dragOver(DropTargetDragEvent dtde) {
    System.out.println("Drag Over");
    public void dropActionChanged(DropTargetDragEvent dtde) {
    System.out.println("Drop Action Changed");
    public void drop(DropTargetDropEvent dtde) {
    FileSystemView view = FileSystemView.getFileSystemView();
    JLabel testb;
    Icon icon = null;
    Toolkit tk;
    Dimension dim;
    BufferedImage buff = null;
    try {
    Transferable tr = dtde.getTransferable();
    DataFlavor[] flavors = tr.getTransferDataFlavors();
    for (int i = 0; i < flavors.length; i++) {
    System.out.println("Possible flavor: " + flavors.getMimeType());
    if (flavors.isFlavorJavaFileListType()) {
    dtde.acceptDrop(DnDConstants.ACTION_COPY);
    ta.setText("Successful file list drop.\n\n");
    java.util.List list = (java.util.List) tr.getTransferData(flavors);
    for (int j = 0; j < list.size(); j++) {
    System.out.println(list.get(j));
    file = (File) list.get(j);
    icon = view.getSystemIcon(file);
    ta.append(list.get(j) + "\n");
    ta.append("\n");
    tk = Toolkit.getDefaultToolkit();
    dim = tk.getBestCursorSize(icon.getIconWidth(), icon.getIconHeight());
    buff = new BufferedImage(dim.width, dim.height, BufferedImage.TYPE_INT_ARGB);
    icon.paintIcon(ta, buff.getGraphics(), 10, 10);
    repaint();
    dtde.dropComplete(true);
    return;
    System.out.println("Drop failed: " + dtde);
    dtde.rejectDrop();
    } catch (Exception e) {
    e.printStackTrace();
    dtde.rejectDrop();
    public static void main(String args[]) {
    new FileDrag();
    }

    This appears to be a long-standing bug:
    https://bugzilla.mozilla.org/show_bug.cgi?id=634720
    and the accepted workaround is stated in comment 11.
    Oddly, it's possible to do the reverse, i.e. drag multiple eml files from Explorer to a TB folder.

  • During sync, new contacts on my iphone are deleted. The option in iTunes to replace contacts on my iphone is not selected. Is there a way to merge info on sync instead of replace?

    During sync, new contacts on my iphone are deleted. I'll typically add any new contacts I get directly to my iphone, simply because I don't have my mac on me at all times. However, unless I specifically add the contact to my mac address book, it will be deleted from my iphone contacts upon sync. The option in iTunes to replace contacts on my iphone is not selected. Is there a way to merge info on sync instead of replace?

    Thank you for your reply. I realy have nothing else to sync - no music. Emails do work so its just my contacts I am concerned about. I'm kinda new at this but have a working understanding of the system.
    I have an icloud account but the Geek Squad went there and tried but could not export contacts.  I truly am not that good re icloud. They worked exclusively with my itunes, re-downloading, etc - all of the stuff in their book.
    I have not tried a complete restore because I am not sure I am that good with the equipment but could.  I did all of the stuff on the help page - sync reset, forced one-way sync etc but the phone just does not seem to recognize the sync. I have not gone to an Apple store to have them have a look - that may be my next step to hook up to another itunes computer. It seems simple to me - it was working fine until maybe 3 months ago - probably when there was an update. Its telling to me that the phone does not tell me there is a sync in process while itunes is saying there is - its just not biting between the 2.
    I appreciate any hep - and I said, I not stupidi about these things but have kind of reached as far as I am comfortable with fear of doing something really wrong.

  • How to use UTL_SMTP to send email with existing file attachment

    Hello! I am trying to create a pl/sql procedure that lets me send an email and include an existing file to a email address. So far, I found information on how to send a file and create an attachment with information I put in the procedure. This is NOT what I'm trying to do. I'm trying to send an email and include an attachment for a file that already exists. I need the pre-existing file to be sent to the email recipient.
    This is how far I've gotten, but this only allows me to CREATE an attachment with the information I put in it from the procedure. I got it from the following site:
    http://www.orafaq.com/wiki/Send_mail_from_PL/SQL
    DECLARE
       v_From       VARCHAR2(80) := '[email protected]';
       v_Recipient  VARCHAR2(80) := '[email protected]';
       v_Subject    VARCHAR2(80) := 'Weekly Invoice Report';
       v_Mail_Host  VARCHAR2(30) := 'mail.mycompany.com';
       v_Mail_Conn  utl_smtp.Connection;
       crlf         VARCHAR2(2)  := chr(13)||chr(10);
    BEGIN
      v_Mail_Conn := utl_smtp.Open_Connection(v_Mail_Host, 25);
      utl_smtp.Helo(v_Mail_Conn, v_Mail_Host);
      utl_smtp.Mail(v_Mail_Conn, v_From);
      utl_smtp.Rcpt(v_Mail_Conn, v_Recipient);
      utl_smtp.Data(v_Mail_Conn,
        'Date: '   || to_char(sysdate, 'Dy, DD Mon YYYY hh24:mi:ss') || crlf ||
        'From: '   || v_From || crlf ||
        'Subject: '|| v_Subject || crlf ||
        'To: '     || v_Recipient || crlf ||
        'MIME-Version: 1.0'|| crlf ||     -- Use MIME mail standard
        'Content-Type: multipart/mixed;'|| crlf ||
        ' boundary="-----SECBOUND"'|| crlf ||
        crlf ||
        '-------SECBOUND'|| crlf ||
        'Content-Type: text/plain;'|| crlf ||
        'Content-Transfer_Encoding: 7bit'|| crlf ||
        crlf ||
        'This is a test'|| crlf ||     -- Message body
        'of the email attachment'|| crlf ||
        crlf ||
        '-------SECBOUND'|| crlf ||
        'Content-Type: text/plain;'|| crlf ||
        ' name="ap_inv_supplier_cc10.txt"'|| crlf ||
        'Content-Transfer_Encoding: 8bit'|| crlf ||
        'Content-Disposition: attachment;'|| crlf ||
        ' filename="ap_inv_supplier_cc10.txt"'|| crlf ||
        crlf ||
        'TXT,file,attachment'|| crlf ||     -- Content of attachment  (THIS IS MY PROBLEM!  I NEED TO BE ABLE TO ATTACH AN EXISTING FILE, NOT CREATE A NEW ONE)
        crlf ||
        '-------SECBOUND--'               -- End MIME mail
      utl_smtp.Quit(v_mail_conn);
    EXCEPTION
      WHEN utl_smtp.Transient_Error OR utl_smtp.Permanent_Error then
        raise_application_error(-20000, 'Unable to send mail: '||sqlerrm);
    END;
    /

    First, you must create a directory object
    create directory ORALOAD as '/home/ldcgroup/ldccbc/'
    /Study the Prerequisites in the link I posted above, or else you will not be able to read/write files from the above directory object
    "fname" relates to the file name that you read from.
    In the code below, it is also the name of the file that you are attaching.
    Although they can be different!
    l_Output is the contents of the file.
    declare
    vInHandle  utl_file.file_type;
    flen       number;
    bsize      number;
    ex         boolean;
    l_Output   raw(32767);
    fname      varchar2(30) := 'ap_inv_supplier_cc10.txt';
    vSender    varchar2(30) := '[email protected]';
    vRecip     varchar2(30) := '[email protected]';
    vSubj      varchar2(50) := 'Weekly Invoice Report';
    vAttach    varchar2(50) := 'ap_inv_supplier_cc10.txt';
    vMType     varchar2(30) := 'text/plain; charset=us-ascii';
    begin
      utl_file.fgetattr('ORALOAD', fname, ex, flen, bsize);
      vInHandle := utl_file.fopen('ORALOAD', fname, 'R');
      utl_file.get_raw (vInHandle, l_Output);
      utl_file.fclose(vInHandle);
      utl_mail.send_attach_raw(sender       => vSender
                              ,recipients   => vRecip
                              ,subject      => vsubj
                              ,attachment   => l_Output
                              ,att_inline   => false
                              ,att_filename => fname);
    end;
    /

  • How to create a new file with existing file's resource fork?

    Hello,
    I would like to create a new file that has the resource fork of an existing file. I had though of making a copy of the existing file, seek to the beginning of the copy and write the new data, but for large files, that creates the whole file even when not needed. I currently create the new file with [NSFileManager createFileAtPath: contents: attributes:], but attributes do not include resource fork items, like custom icons, color label, etc.
    [NSURL resourceValuesForKeys] gives a common subset of resource data, like icons and color label, but that's about it. Is there some way to get the resource fork or a copy of the file without getting the whole file?
    Thanks

    What are you trying to do here? While resource forks might still be quasi-supported, you really shouldn't be thinking about them as such. Instead, think in terms of extended attributes. You can use the low-level xattr() functions to get some of that or you can use the new NSURL methods.

  • Hp pavilion command box, files being copied

    My hp pavilionsmart keeps poping up the command box. The messages say'sfiles are being copied. Has someone hacked my computer?

    Hello wcreed,
    Welcome to the HP Forums!
    I understand there is a message that files are being copied. To assist you, please provide the exact message and the following information:
    1. The computer's model number. If you require assistance locating this information, please reference this website: Guide to finding your product number
    2. The computer's operating system. If you require assistance locating this information, please reference this website to determine your Windows operating system.
    3. Have you installed any new hardware on this computer, before the issue appeared?
    4. Have you installed any new software or drivers on this computer, before the issue appeared?
    Mario
    I worked on behalf of HP.

  • I want to retrieve a replaced file with existing file help please

    While arranging my files in different folders I was asked "This file already contains a file named 'xyz', would you like to replace the existing file?", of course I said yes not realizing that they were not the same picture, they had the same file numbers only because they were in different folders. Therefore I cannot reconnect because the picture is not the same. Also, the picture I cannot find has a small red box @ bottom of pic with a rip going through it. What does that mean & can I save this pic & the other one I replaced it with?

    Hi Teresa,
    Sorry for the delay... This sounds quite messy. Do you have a lot of
    tags? If not, it might be an idea to do one of two things and I'll
    explain the merit of each option:
    1. Restore your backup;
    You should do this ONLY if you are not concerned about overwriting what
    you have done since the backup;
    2. Restore images from your recycle bin, relabel the my catalog.psa file
    to my catalog.old and start all over...
    You should do this if you are concerned about images that you have been
    working on since the last back up. It will lose all your
    tags/collections, but any images that are still on your computer will
    not be affect.
    Now... let me know which option you want to proceed with and I'll write
    out the instructions for you.
    Cheers

  • How do I get all the dynamically related files to show when working with wordpress files in DW?

    I have set up MAMP on my Mac and have set up a user in phpmyadmin. I have downloaded wordpress and put it in the mamp folder. I have defined the site at MAMP/htdocs in Applications. I have started to look at the files through the index.php files near the root folder. I pressed 'discover' underneath the document tab to discover dynamically related files. However, this only results in five extra files being shown in the document tab as can be seen in the screen shot provided. Apparently I should have loads to play with. What am I doing wrong? Any help would be greatly appreciated.
    Josh

    Very happy to help.Valued family photos are a treasure.
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • How to package resource files for iPad app along with ipa file

    Hello,
    I am developing an app for iPad in Flash Builder 4 and Packager for Iphone.
    I want to keep my xml-asset files local to the app. When I run my app in flash builder, I load the resources locally.
    When I upload the same onto iPad, I need to package the resource files along with the ipa file.
    I tried compiling the air-project with "-include-file" compiler option, but in vain.
    Any help?
    Tanu

    You can read through the resources documentation for iOS here:
    http://help.adobe.com/en_US/air/extensions/WSf268776665d7970d-2e74ffb4130044f3619-7ff8.htm l
    Of particular interest is the line:
    "3. It moves the resource files to the top-level directory of the application."
    So not sure if you are using an ant build script or whatever to build your ANE, but as long as you place these json files into the folder with your library when you build the ANE, these will end up getting copied to the top-level directory of the application when an application is built using this ANE.
    This is exactly how I include an iOS .bundle of resources along with a .a in an ANE and it works fine. Nice clean packaging when distributing the ANE too.

  • File when copied , is having the current timestamp instead of original time

    Hello,
    I am copying a file file-1(x-date) from server-A to Server-B. when the file-1 is copied to server-b, the size and everything remains fine but the timestamp changes to current timestamp.(Y-DATE)
    my issue : I want to the file when copied to have original time-stamp(X-DATE)
    any idea why this is happening ???
    Thanks

    BigDaddyLoveHandles wrote:
    Skotty wrote:
    You might not think that you could set the last modified date manaully, but alas, you can:
    [http://java.sun.com/j2se/1.4.2/docs/api/java/io/File.html#setLastModified(long)]
    Oh lackaday! Why "alas"?It's suuuuuch a hassle!

  • Limiting the number of files being picked up by the sender file adapter

    We are running a file adapter to collect xml files from a legacy system in a shared network location.  The files are picked up, information is sorted and mapped, and then sent to a proxy on our CRM system to store the data.  Very simple and not-complex.
    Our initial data load will consist of somewhere in the neighborhood of 900k records, which is killing CRM.
    A co-worker with a bit more experience was telling me that he believes there is a way to limit the number of files that will be pulled per iteration of the file communication channel.  If this is the case, can someone share with me the parameters that need to be set?
    My apologies if this is a duplicate post - I have tried to look for a good answer in the forums and have come up empty.
    We are running PI 7.1, and I believe it is SP 6. 
    Thanks in advance for the help,
    Ben

    Hi Ben,
    There is no standard way to limit the number of files to be processed by the communication channel.
    On the Sender File CC, there is a parameter " Maximum File Size" which restricts the files bigger than the specific size, but this is just a prevention not a solution.
    If you have a single big size file, then somehow you have to create small sized files out of it.
    Thanks,
    Pooja Pandey

Maybe you are looking for

  • Mail wont delete messages, only archive

    When I open my G-Mail account in the Mail application, when i select "Inbox" and i want to delete a message, it wont allow me to delete the message, it'll ONLY let me "Archive" the message. How can i change that to delete that to have to option to de

  • Transfer only selected data from one .pdf to another using hyperlink

    I have a form that has mutiple pages.  On one of the forms, I have created a hyperlink to open a different form.  My objective is to be able to click on the hyperlink and transfer some of the data from the original form to the hyperlink form.  Is tha

  • Layoutdelay in different browsers

    hi, i published some day ago our new website http://joergtacke.de on Businesscatalyst. Some browsers make Layoutdelays (Screenshots) Windows & Firefox: https://dl.dropboxusercontent.com/u/88123223/Support/Firefox%20windows.jpg Mac & Chrome: https://d

  • Sorting on date (date_popup2) in manual tabular form does not work

    Hi All, I created a manual tabular form (based on a collection) with 1 date_popup2 field in it. This field is defined in the query as follows: ,      apex_item.date_popup2( p_idx                   => 18                             , p_value          

  • Switch operating systems w/o switching cell phone provider!!!

    I have the AT@T BB cell phone but i want the SPRINT BB modle can the Or/S be changed!