Copying same file to multiple locations problem

This is really bugging me.... since upgrading to Lion, file distribution is taking a lot longer. I can no longer copy the same (large) file to multiple remote systems (via finder) at the same time. The first copy kicks off fine and subsequent ones just queue up. In SL they used to all run at the  same time. What's with the single threading!!!  this is VERY annoying. Am I alone here or is the a general problem? I think I will log this. I'm sure one of my systems still has Applecare.

Apple have rejected this as a bug and claim it to be a feature of Lion. Feature my arse. It's either a bug a stupid idea by some dimwit who didn't think it through. If you're not happy with this new "feature" complain via feedback as a support call will result only in frustration.

Similar Messages

  • Same file opening multiple times in indesign cc

    Hi - I'm getting the same file opening multiple (20-30 times)
    try closing and it just keeps opening new copies
    Have to force quit in the end
    Any idea's

    Hi Rob
    Thanks for getting back
    From what I can see there are no links to other documents.
    I often copy and paste elements like images from one document to the next
    The multiple files that open - open as 'Untitled' indesign docs - almost like they're new documents or from a template.
    They open very rapidly - around 10-20 - if you try to close them sometimes new ones open. This often repeats
    I have to force quit indesign.
    It doesn't happen all the time - so I think it may be to do with links somewhere along the line.
    I've noticed when I work on DPS indesign docs - they often open the original 'source' for print design docs in the same way. The same multiple file opening of the same doc happens
    Let me know if I should look anywhere in particular - I'll try and repeat the glitch and get more info
    Many Thanks

  • Has anyone seen this before,? some import operations were not performed , could not copy the file to requested location

    some import operations were not performed , could not copy the file to requested location , has anyone seen this or have a fix?

    cormacc57361247 wrote:
    has anyone seen this or have a fix?
    Oh, I bet that if you'd done a site search, you'd have got answers to both of those questions...

  • Delete multiple files from multiple locations using config file

    Hello All,
    I am fairly new to .net and I have to make a windows application to delete files older than 90 days from multi ple locations. these multiple locations cant be hard coded and have to be configurable, also the number of days to delete the files have to be
    configurable.
    I think the answer to this would be an app.config file. but dont know how to use the same.
    can anyone tell me about this and if possible help me out with a code snippet.?

    Add settings like picture below.  Add the string by press the double dot icon.
    The use the code below
    static void Main(string[] args)
    int deleteDays = Properties.Settings.Default.DeleteDays;
    StringCollection folders = Properties.Settings.Default.Folders;
    foreach (string folder in folders)
    DirectoryInfo info = new DirectoryInfo(folder);
    FileSystemInfo[] deleleteFiles = info.EnumerateFiles()
    .Where(x => x.LastWriteTime < DateTime.Today.AddDays(deleteDays))
    .ToArray() ;
    foreach(FileSystemInfo file in deleleteFiles)
    File.Delete(file.FullName);
    jdweng

  • How to read from and write into the same file from multiple threads?

    I need to read from and write into a same file multiple threads.
    How can we do that without any data contamination.
    Can u please provide coding for this type of task.
    Thanks in advance.

    Assuming you are using RandomAccessFile, you can use the locking functionality in the Java NIO library to lock sections of a file that you are reading/writing from each thread (or process).
    If you can't use NIO, and all your threads are in the same application, you can create your own in-process locking mechanism that each thread uses prior to accessing the file. That would take some development, and the OS already has the capability, so using NIO is the best way to go if you can use JDK 1.4 or higher.
    - K
    I need to read from and write into a same file
    multiple threads.
    How can we do that without any data contamination.
    Can u please provide coding for this type of task.
    Thanks in advance.

  • How to copy a file from one location to another ???

    Hi,
    I have a file ('D:/Pictures/1.jpg') and I want to copy this 1.jpg file to a location called 'D:/Folder1'. I tried the WebUtil_File.copy_file function, but it does not work. it returns false boolean.
    I am using windows xp and oracle 10g.
    The webutil configurations are also completed.
    This D: drive is the one which has oracle 10g application server installed.
    Am I doing anything wrong or missed?. I need to complete this urgently. but it does not work.
    Or any other way to copy a file from one place to given any path?. After this I have to renaming (may be using Rename_File function) the copied file. Please advice me.

    An alternative could be HOST command, that calls OS prompt to run a command in the server and then return the focus to the Forms:
    HOST ('copy D:/Pictures/1.jpg D:/Folder1/1.jpg');
    Edited by: Kleber M on Sep 9, 2011 12:38 PM

  • Same file opening multiple times

    When I open a folio file in DPS, it opens the same file 100 times. I've tried reinstalling and force quitting InDesign but every time I reopen InDesign the file keeps opening multiple times. What can I do to stop this?

    There are hyperlinks on all of the folio pages. I'm using InDesign CC and the error starts when I open the Folio Overlays panel. This panel is no longer included in the Digital Publishing interface.

  • How do I make simplesearch look for the same tag in multiple locations

    Currently i'm trying to write a simplesearch implementation that will only return the result it if contains a specific tag. I would also like to include DAM assets in the search, wherein lies the problem:
    I need to look in both jcr:content and jcr:content/metadata for the tag, and if the tag is found in either location, return that page. Here is the code I am trying to use, but it currently only looks for the tag(s) in one location. Any tips on how to get it to look in multiple locations?
    Code:
                        tagPredicate = new Predicate("tags2", "tagid");
                        tagPredicate.set("property", "jcr:content/cq:tags");
                        for (Cookie cookie : tagsFromCookie) {
                                       if (cookie.getName().contains(CREDENTIALS)) {
                                                      tagPredicate.set("tagid",
                                                                          (cookie.getValue().replaceAll("---", ":")));
                                                      search.addPredicate(tagPredicate);
    Thanks for any help you can give!

    I figured this one out on my own. Kind of a "Doh!" moment.
    What I ended up doing is this: I created a PredicateGroup, and populated this group with the predicates I needed. Then, I set the PredicateGroup allRequired to false. Voila! It works!
    Code:
              PredicateGroup tagPredicateGroup = new PredicateGroup();
                        tagPredicateGroup.setAllRequired(false);
                        Predicate tagPredicate = new Predicate("tags", "tagid");
                        if (slingRequest.getParameter(GROUP1) != null) {
                                       tagPredicate = new Predicate("tags", "tagid");
                                       tagPredicate.set("property", "jcr:content/cq:tags");
                                       tagPredicate.set("tagid", GROUP1);
                                       tagPredicateGroup.add(tagPredicate);
                                       tagPredicate = new Predicate("damTags", "tagid");
                                       tagPredicate.set("property", "jcr:content/metadata/cq:tags");
                                       tagPredicate.set("tagid", GROUP1);
                                       tagPredicateGroup.add(tagPredicate);
                        return tagPredicateGroup;

  • Copy preference file to multiple accounts on one computer

    How would I go about sending a preference file so that it applies to all accounts on the computer?
    MDA

    Transfer the file to one location on the computer, and then click here for further information.
    (30696)

  • Copy one file to multiple IDOCs in XI

    Hi,
    I am having following scenario..
    XI receiving XML file with Sales order and customer information.
    Using this file, first I have to create customer and then create sales order using same file if customer is created successfully.
    Please advice how to solve above scenario
    Thanks in advance,
    Laxman.

    Try BPMPatternMulticastSerial BMP Pattern. You can first create the customer, then receive a response (If Sync) and then send the Sales Order. This uses the ForEach mode.
    Hope this Helps to get you started!

  • Same Enum at multiple location

    1. Attached is state machine implementation example in chapter 8 of core 1, page 8-7. 2. Question is : how to create same enum at mutiple location. Like case here have two states: Start & configuration. When I create enum on front panel it will appear on bloack diagram as "Start" But in case structure there is another instance where enum shows "configuration" 3. How it is done? 4. Can it be done like if in future I change name "Start" in case to "Sta". It would automatically change at all places in current VI.
    Solved!
    Go to Solution.
    Attachments:
    ckt.JPG ‏3679 KB

    Yup in reality all enums should be type defs.  That way updating them in one place will cause all the copies of it to be updated.  Here are a few links talking about type defs.
    http://zone.ni.com/reference/en-XX/help/371361H-01/lvhowto/creating_type_defs/
    http://digital.ni.com/public.nsf/allkb/1B04FD6A11E6F17286256C6300588BFA
    http://zone.ni.com/reference/en-XX/help/371361H-01/lvconcepts/custom_cont_ind_type/
    Clusters are another data type that generally should be type def'd.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • Copying multiple files to multiple locations

    I'll give you as much background detail as possible to help explain this one.
    We've made ourselves a little filemaker application, and at the moment I'm just working on creating a final disc image for it.
    I figure I'm going to create an Automator application script on the DVD-ROM that will copy the contents to the Application folder, which is easy enough.
    Here comes the tricky part.
    From time to time we'll be wanting to send out software updates. This software links multiple files into Filemaker from various folders.
    When we send out an updates disc, I want to have an Automator script that will copy all the files on the update disc to the same folder names stored on the computer's hard drive.
    ie, all files in folder A on the DVD will be copied to folder A on the hard drive.
    and all files in folder B on the DVD will be copied to folder B on the hard drive.
    etc etc
    I'm not even really sure on where to start to build this script. There's a good 50 odd folders to do this for.
    I'm also wondering whether I'll need to input the full pathname of the destination or not. This could be problematic if someone has renamed their Macintosh HD to something else. Is is possible to just get it to look for the Applications folder as the destination?
    hope thats clear enough. feel free to ask if you need more info.

    Hi.
    Have you considered the implementation of an installation package (.pkg), using the PackageMaker tool.
    Good Luck

  • Copy a file into multiple folders action

    Hello All,
    I'm looking for help with a seemingly difficult action; I want to copy a text file into every folder within a location, if its not already there.
    I have over 100 projects ready to go out, and need to add a copyright notice .rtf file into each folder. Is there a way I can get Automator to do this? It would save me some time now, and certainly in the future.
    Thanks.

    rajneesh kumar wrote:
    -- Ask DBA to grant read , write privileges on this particular directory to your oracle user ie
    -- grant execute ON utl_file to your_user;
    -- grant read,write on directory john_test_dir to your_user;
    -- ALTER SYSTEM SET utl_file_dir = 'e:\jp_test\image_dir' SCOPE=SPFILE;
    -- restart the instanceNO! NO! NO!
    You should no longer use the utl_file_dir parameter as this has been deprecated by Oracle and replaced with directory objects. Setting the utl_file_dir parameter will leave your file system open to users corrupting files if you are not careful. This parameter should be unset of any value if it has any value set in it and you should set up directory objects instead.
    The correct thing to do is to create a directory object e.g.:
    CREATE OR REPLACE DIRECTORY mydir AS 'c:\myfiles';Note: This does not create the directory on the file system. You have to do that yourself and ensure that oracle has permission to read/write to that file system directory.
    Then, grant permission to the users who require access e.g....
    GRANT READ,WRITE ON DIRECTORY mydir TO myuser;Then use that directory object inside your FOPEN statement e.g.
    fh := UTL_FILE.FOPEN('MYDIR', 'myfile.txt', 'r');Note: You MUST specify the directory object name in quotes and in UPPER case for this to work as it is a string that is referring to a database object name which will have been stored in uppercase by default.

  • How to package a .war file for multiple locations...

    Sorry if this is in the wrong section, but I wasn't sure where to place it.
    We have a webapp (.war) that we would like to package to distribute to multiple remote locations. We have to assume that the people installing this webapp have no Java/J2EE experience and will not have the technical know-how to be able to handle packaging the .war file themselves.
    They do, however, need to be able to make configuration changes to the JDBC settings in the web.xml, the logging settings in log4j.xml, and configuration changes in the context.xml.
    Since these files reside inside the .war, what is the best way to package this application so they can make changes to those files and package it to deploy on their application servers?
    Thanks!

    Well, the best way is to move that configuration out of those XML files and manage them directly from you application.
    Then you can use the Java Preferences API to actually maintain the configuration data, and that data is stored outside of your application completely in some JRE dependent way (Registry on Windows, and the users home directory on Unix for Sun's JRE).
    You can also modify your webapp to manage the configuration directly and have it rewrite the XML files itself. The Java Preferences API is better just because the config changes will survive if you happen to update the WAR file with a new version. Of course, you can still leverage the Preference API, get your "defaults" from the supplied XML files in the WAR, and then if your application detects a version change (the one in the Preferences is different from the one in the WAR), the app can update the XML files, and pop up a page telling the user to restart the application to see the new changes.
    Finally, you can also write a Swing app that presents the few options that the user might need, and then it has the smarts to update the WAR file for them (it's simply a ZIP file and Java can read/write those). That way you have a simple wizard they can play with.
    Also, for things like log4j, you can bundle that seperate from the WAR, and let them place it either on the CLASSPATH of their container, or in one of their shared directories (like shared/classes on Tomcat for example).
    I'm fond of the Preferences technique with a Webapp configuration, as you can make your WAR almost plug and play. They plop in the war, app fires up, they hit the URL and there's a config page staring at them.
    But all of these options require work outside of your application.
    You can also perhaps get one of those Installer programs, and right an installer for them. You can explode the WAR in to any directory, and then have the container deploy it from there.

  • How do I get itunes and iphoto to have the same files on multiple users?

    Every time I upload a disc or photos, they show up on my user profile, but not my wife's. It seems like I am wasting a ton of hard drive space reloading the same things between each user. I tried the "shared" folder, but i am not sure that worked.
    Thanks for the help...

    I don't think that Thomas's solution will work on 10.5.
    There are two ways to share, depending on what you mean by 'share'.
    If you want the other user to be able to see the pics, but not add to, change or alter your library, then enable Sharing in your iPhoto (Preferences -> Sharing), leave iPhoto running and use Fast User Switching to open the other account. In that account, enable 'Look For Shared Libraries'. Your Library will appear in the other source pane.
    Remember iPhoto must be running in both accounts for this to work.
    If you want the other user to have the same access to the library as you: to be able to add, edit, organise, keyword etc. then:
    Quit iPhoto in both accounts
    Move the iPhoto Library Folder to an external HD set to ignore permissions. You could also use a dmg.
    In each account in turn: Hold down the option (or alt) key and launch iPhoto. From the resulting dialogue, select 'Choose Library' and navigate to the new library location. From that point on, this will be the default library location. Both accounts will have full access to the library, in fact, both accounts will 'own' it.
    However, there is a catch with this system and it is a significant one. iPhoto is not a multi-user app., it does not have the code to negotiate two users simultaneously writing to the database, and trying will cause db corruption. So only one user at a time, and back up, back up back up.
    Regards
    TD

Maybe you are looking for