Copy File Problems

First off, my problem is this. I know the only way to copy over a folder
is to create a new folder where you want to copy the original folder to and copy each file over seper
ately, then remove the old file....for some reason my copy seems to be failing. Here is the code.
function moveItems(fName,pNum) {
    temp1 = new File('/p/toConvert/regular/'+fName+'/ImageProperties.xml');
    fileObject = new Folder("/p/toConvert/Done/"+pNum+"/"+fName);
if(fileObject.exists){   
    check = temp1.copy ("/p/toConvert/Done/"+pNum+"/"+fName);
    alert(check);
    return;
    }else{
        alert('not there');
    if(check){
    temp1.remove();
    return;
temp1.remove(); works and removes the old file, however my alert says that check failed, even though remove worked so we know temp1 exists, and since fileObject.exists was passed to get the alert....I have no clue what the deal is, it just wont copy. Any help would be appreciated, thanks.

Mike, I have been playing with copying directories with contents on my mac. I would normally with AppleScript & Shell. What I have is working but I do think Im going about this in an untidy way with my JavaScript? Im using bridge to issue the system commands. Just about the only thing I've gotten to work with bridgetalk…
using fsName on a folder omits the final backslash should I be using a decodeURI
also is there a cleaner method to wrapping file path strings so that they are enclosed in single quotes?
Here was my test code
var defaultFolder = new Folder ('~/Desktop');
// Get user selected source folder
var sourceFolder = defaultFolder.selectDlg('Please select your Folder to sync files from…');
var sf = sourceFolder.fsName;
// Get user selected destination folder
var destFolder = defaultFolder.selectDlg('Please select your Folder to sync files to…');
var df = destFolder.fsName;
// Add quotes to paths
var shellString = 'rsync -auqE ' + "'" +sf + "/'" + ' ' + "'" + df + "/'";
btMessaging('bridge', shellString);
function btMessaging(targetApp, script) {
var bt = new BridgeTalk();
bt.target = targetApp;
bt.body = 'app.system(' + script.toSource() + ');';
//bt.onResult = function(inBT) {}
//bt.onError = function(inBT) {}
bt.send();

Similar Messages

  • Copy files problem/ Storing byte [] in Vector

    Hey.
    I am trying to write a tool to copy files from one location to various others.
    I wrote a little scrap class to test the copy algorithm.
    In the tool I want to read the input files only once and then just read the data from a Vector or something.
    I tryed the following.
    import java.io.*;
    import java.util.*;
    public class copytest
         public static void main(String args[])
              try
                   File output = new File("f:/Ascii/test");
                   if(!output.exists())
                        output.mkdirs();
                   BufferedInputStream bis = new BufferedInputStream(new FileInputStream(new File("f:/Textfiles/test.txt")));
                   BufferedOutputStream buf = new BufferedOutputStream(new FileOutputStream("f:/Ascii/test/t.txt"));
                   int currend = -1;
                   byte[] buffer = new byte[80];
                   Vector tr = new Vector();
                   while((currend = bis.read(buffer))!= -1)
                        tr.addElement(buffer);
    //Store data for a while...
                   System.out.println("Here");
                   for(int i = 0; i<tr.size() ; i++)
                        byte[] bufe = (byte[])(tr.elementAt(i));
    //Read it again...?
                        // THIS DOES NOT WORK!!!
                        buf.write(bufe, 0, bufe.length);
                   buf.close();
                   bis.close();
              catch(IOException e)
                   System.out.println(e);
    I hope U can help me...
    THX
    Martin
              

    while((currend =bis.read(buffer))!= -1)
    byte[] temp = new byte[currend];
    System.arraycopy(buffer, 0, temp, 0, currend);
    tr.addElement(temp);
    //Store data for a while...
    }Thanks! I will try that. I should have thought of that myself actually...
    But, since that involves creating and
    allocating memory for multiple arrays of bytes and
    then holding them in memory, I really doubt you will
    gain any performance at all compared to just
    immediately writing out what you read.You are probably right. I just want to give it a shot. My tool works with threads and that would mean I would read the input x<=8 times simultaneously. Thats why I thought reading it once and than using an static Vector might be better...
    But when it gets to a big amount of data.... I don't know....
    Thanks!
    Martin

  • Create folder and copy files problem

    Hello all indesign script Members
    where I work we use a permanent folder structure for an example
    a jobnumber called "123123"
    I have wrote a little interface called interface.jsx, this file is saved and located in
    123123/scripts/interface
    I want my interface to navigate two folders up
    to 123123/source/ creates  a folder called "hej" so result is "123123/source/hej"
    then I can pick from a little dialog box the folder 123123/source/a/ copy all .indd files to the folder hej (or any other folder I choose from the dialog box)
    I want the script to know the active path instead of whole locations because, we have different project numbers all the time.
    then run an extern script called hej.jsx
    the best should be also if the script could chose 123123 as default jobnumber too.
    Please could  someone help me to script this?
    /get started I am very newbie
    Thank you so much in advance
    All Adobe Members

    Hi tjacobs01,
    Thanks for reply. I didnt include main method since i dont want to make the problem looks too complicated. I called both of the methods in main. The following is the simplified class code including main method.
    import java.io.File;
    import java.io.IOException;
    public class TestClass{
    public void buildFolder(){
    File f=new File("/documents/hospital_backup");
    if(f.exists()==false){
    f.mkdirs();
    public void copyFile(String file){
    String form_cmd="cp /job_holding/hospital/" + file + " /documents/hospital_backup/"+file;
    String[] command = new String[]{"sh", "-c", form_cmd};
    try{
    Runtime r=Runtime.getRuntime();
    Process p =r.exec(command);
    BufferedReader in = new BufferedReader(new InputStreamReader(p.getInputStream()));
    String line = null;
    while ((line = in.readLine()) != null) {
    System.out.println(line);}
    int exitVal=p.waitFor();
    System.out.println("Process exitValue:"+exitVal);
    }catch(Exception e){System.out.println(e);}
    public static void main(String[] args) {
    String dir_root="/job_holding/hospital/";
    File f=new File(dir_root);
    File[] fList = f.listFiles();
    for (int i=0; i<fList.length; i++)
    String file=dir_root+fList.getName();
    TestClass test = new TestClass();     
    test.buildFolder();
    test.CopyFile(file);

  • Time machine: An error occurred while copying files. The problem could be temporary. If the problem persists, use Disk Utility to repair your backup disk.

    Time machine backups are failing. I've followed the instructions I found on the Time Machine troubleshooting page (http://pondini.org/TM/Troubleshooting.html) but have gotten to where I don't know what to do next.
    Sequence of events:
    The main error message is always:
    An error occurred while copying files. The problem could be temporary. If the problem persists, use Disk Utility to repair your backup disk.
    Yesterday, I opened Disk Utility and verified the disk. Got this error:
    Error: This disk needs to be repaired using the Recovery HD. Restart your computer, holding down the Command key and the R key until you see the Apple logo. When the OS X Utilities window appears, choose Disk Utility.
    I ran Disk Utility and repaired the hard drive. Then I manually started the backup before going to bed, figuring it was going to take a long time to run. When I got up this morning, the backup had failed with the same "could be temporary" error. I checked the log, which says:
    Starting manual backup
    Attempting to mount network destination URL: afp://Tery%20Griffin;[email protected]/Tery%20Griffin's%20Time%20Ca psule
    Mounted network destination at mount point: /Volumes/Tery Griffin's Time Capsule using URL: afp://Tery%20Griffin;[email protected]/Tery%20Griffin's%20Time%20Ca psule
    Disk image /Volumes/Tery Griffin's Time Capsule/Tery Griffin’s Computer (44).sparsebundle mounted at: /Volumes/Time Machine Backups
    Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    Event store UUIDs don't match for volume: Macintosh HD
    Error: (-36) Applying backup protections to /Volumes/Time Machine Backups/Backups.backupdb/Tery Griffin’s Computer (44)/2014-03-05-201742.inProgress/ABB10CF2-F041-4DE5-B6AE-3C228B59ADCC
    Error: (5) setxattr for key:com.apple.backupd.SnapshotStartDate path:/Volumes/Time Machine Backups/Backups.backupdb/Tery Griffin’s Computer (44)/2014-03-05-201742.inProgress/ABB10CF2-F041-4DE5-B6AE-3C228B59ADCC size:17
    Error: (5) setxattr for key:com.apple.backupd.SnapshotState path:/Volumes/Time Machine Backups/Backups.backupdb/Tery Griffin’s Computer (44)/2014-03-05-201742.inProgress/ABB10CF2-F041-4DE5-B6AE-3C228B59ADCC size:2
    Deep event scan at path:/ reason:must scan subdirs|new event db|
    Finished scan
    Found 145601 files (11.88 GB) needing backup
    16.1 GB required (including padding), 620.77 GB available
    Copied Zero KB of 11.88 GB, 0 of 145601 items
    Copied 0 files (Zero KB) from volume Macintosh HD.
    Copy stage failed with error:11
    Backup failed with error: 11
    Ejected Time Machine disk image: /Volumes/Tery Griffin's Time Capsule/Tery Griffin’s Computer (44).sparsebundle
    Ejected Time Machine network volume.
    Starting automatic backup
    Attempting to mount network destination URL: afp://Tery%20Griffin;[email protected]/Tery%20Griffin's%20Time%20Ca psule
    Mounted network destination at mount point: /Volumes/Tery Griffin's Time Capsule using URL: afp://Tery%20Griffin;[email protected]/Tery%20Griffin's%20Time%20Ca psule
    Disk image /Volumes/Tery Griffin's Time Capsule/Tery Griffin’s Computer (44).sparsebundle mounted at: /Volumes/Time Machine Backups
    Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    Event store UUIDs don't match for volume: Macintosh HD
    Error: (-36) Applying backup protections to /Volumes/Time Machine Backups/Backups.backupdb/Tery Griffin’s Computer (44)/2014-03-05-201742.inProgress/9F8E7957-9C50-49C3-8314-880E5203E3D9
    Error: (5) setxattr for key:com.apple.backupd.SnapshotStartDate path:/Volumes/Time Machine Backups/
    Does anyone know what the problem is here and what I should do?
    Thanks,
    Tery

    You have repaired your boot drive (which is good) but have you repaired your time machine drive?  I don't own a Time Capsule so I don't know if disk utility can operate on it.  If it can, you should repair it as well.  You may need to erase it and start a new backup.  That happens to time machine volumes from time to time and is why people who are serious about their data never rely on a single source of backup.

  • Consolidate Problem. Copying files failed. The File name was invalid.

    Hi to everyone,
    My system is 10.5.8, iTunes 9.2.1 (4)
    I tried to consolidate my iTunes library to an external HD. After about 100GB of copied music, I got the message : Copying files failed. The File name was invalid.
    Now everytime I try again to consolidate, I get immediately this message. I am looking everywhere for a solution, and I only find the same problem for Windows iTunes users.
    Actually I found very useful this thread:
    http://discussions.apple.com/thread.jspa?threadID=1708372,
    which talks about with which order iTunes consolidates the media, so by digging a little in the folders to find which track has the problem and make the fix. It says that consolidate start copy the files by the date added order. So I can go in my new iTunes media folder and find the latest added track, then go back in iTunes, sort by date added the songs and locate the next song, to make the fix. However in my case, all previous and next songs (by date added), have been copied in the new locations.
    I am stuck. I have a remaining 300GB of music to consolidate and dont know how to proceed.
    Any help would be much appreciated..

    Finaly, I managed to solve it by myself...,
    following the help I found from the post of the thread I mentioned on my question...
    What was the problem that made things more difficult in my case, is that a big amount of songs have been added at the same time, with just a few seconds time distance. So it was tougher to locate what was the last imported song, and where iTunes consolidation had stopped. Actually I had groups of about 100 songs with the same timestamp of date added and the consolidation was following the rule of the "date added" but not exactly with the order the songs was showing in the iTuned library. So I started checking all the songs very close to the last added in the media folder one by one with the "show in finder" command, and then I managed to found what was the one with the problem.
    Regarding the problematic file, that was a midi file that had been imported in my iTunes.
    I hope this will help anyone else that might have the same problem as me in the future.

  • I am using itunes 10 and trying to consolidate my files.  I keep getting the error "Copying files failed.  The file name was invalid or too long".  How can I indentify what file is causing this problem or resolve this issue?

    I am using itunes 10 and trying to consolidate my files.  I keep getting the error "Copying files failed.  The file name was invalid or too long".  How can I indentify what file is causing this problem or resolve this issue?

    BUMP
    Yes, I just get that message. I don't see how I could investigate this problem.
    I didn't mention that this happened when I was consolidating my library, not copying files to another computer.
    In other words, I'm using a "normal" itunes procedure, itunes won't complete it, and won't tell me exactly why or how to figure out how to fix it...
    Is there at least some easy way to tell which files were successfully copied to my itunes music folder so I can work on moving the uncopied files?
    Can anybody help me?

  • Problem with copying files between OS 9 to OS 10.4.9

    We have updated 2 computers to 10.4.9 after som minor problems its working fine the only problem we still have is that we cannot copy files from our older Mac running OS 9.2.2 to the macs running 10.4.9 if we copy 1 file its working when we want to copy a folder or more files the connection got lost we get a message the connection with the file server unexpectedly broken. We also have a Xserve running OS 10.4.6 coping files to the Xserve is not a problem and is running just fine.
    We can copy files or take files from the OS 10.4.9 macs to the Mac with OS 9.2.2 this is no problem just copying a bit slower then to the Xserve.
    All the computers are in a netwerk with cat5 cables and was working just fine before the updates to 10.4.9
    Regards Pepijn

    Welcome to Apple Discussions!
    Copying from 9 to 10.4.9 is not recommended unless Mac OS X is under control of the copying. Mac OS 9 has no familiarity with the file permissions of Mac OS X and thus if you make a mistake, you could seriously damage the permissions of Mac OS X. Others have found problems transferring from 9 to 10.4.9 where not with prior versions of Mac OS X. I say it is about time, because of the risks involved but for others their workflow depends on it they are having to relearn how to go the other direction. I've found if the risk is not taken account for, you can make Mac OS X unbootable. My suggestion is to either do all your networking and file transfer for Mac OS X from Mac OS X, or upgrade the software you have to Mac OS X native equivalent software. See my FAQ on migrating to X*:
    http://www.macmaps.com/macosxnative.html
    * Links to my pages may give me compensation.

  • How do I copy files onto a hard drive (device) from Mac 2 7 pc. I'm able to transfer files from device but cannot transfer files to device. Anyone had same problem or can help solve this problem? Help pls

    how do I copy files onto a hard drive (device) from Mac 2 7 pc. I'm able to transfer files from device but cannot transfer files to device. Anyone had same problem or can help solve this problem? Help pls

    Welcome to Apple Support Communities
    When you try to copy data to the external drive, what happens? If you don't see any error, the external drive is formatted in NTFS, and OS X can't write in it.
    To be able to write on this external drive, you have to use an app like Paragon NTFS. Another solution would be to format the external drive in FAT32 or exFAT with Disk Utility > http://pondini.org/OSX/DU1.html Make sure you copied all the files of the external disk to the internal disk before doing it

  • Time Machine will not complete a system backup and terminates with "Unable to complete backup. An error occurred while copying files to the backup volume.  This follows a problem when Time machne terminated when the volume was almost full.

    On 11/1/2011, Time Machine (TM) terminated with an error message I did not record.  I noted that the drive was full and decided to do a separate complete bootable  system backup using Carbon Copy Clone (CCC), before clearing the TM volume and trying to start it over clean.  Part way through the full system backup CCC put up a message that there was a Physical Problem  "Library/Application Support/Techtool Protection/McIntosh HD/Directory Backup 2011-11-01-16-28-16".  That was about the time that TM malfunctioned, so I assumed they were related.  After starting CCC over a couple of times, and getting the same error message, I let it go through to completion of the backup, which took three or four hours.  I then ran tests using Disk Utility and verified that there was nothing physically wrong with both the internal hard drive and the TM volume.  I also erased and reformatted the TM volume.  However, every time I started Time Machine, it would record a few GB and terminate with "Unable to complete backup. An error occurred while copying files to the backup volume".  I restarted the computer with no change in results.  Note that prior to starting the CCC backup, I "Repaired Permissions", "zapped the PRAM" and "re-set the SMC", hoping to have a clean bootable system on the backup.  I ran Techtool and no problems were found.
    I'm running this on an Intel iMac under 10.5.8 and recording to a 500GB My Passport drive.  My hard drive is only about half full at 246 GB.  My assessment is that something happened at 16-28-16 on 11/1/2001 to screwup the Backup Directory in the file at "Library/Application Support/Techtool Protection/McIntosh HD/Directory Backup 2011-11-01-16-28-16". My question is, how do I fix it?
    I had just completed writing everything above here, explaining the problems I had been encountering for the past 24 hours.  I had the Time Machine window standing open on the desktop where I could see it, having recentlycleared it after the last termination.  As I was proofing what I had written, I looked at the window and noted that the clock had started a new run for a full back up, since all prior efforts had failed and the TM volume was empty.  As I watched and waited for it to fail again, as it had been doing at about 13 GB, it kept going and going until it just finished a complete backup, about 4.5 hours later, with my having done nothing.  Now my question would have to be - what could possiibly have happened to make it perform this way?   It will be interesting to see if it continue to operate normally, or if the problem will return, in a later backup run.

    jcm21 wrote:
    CCC put up a message that there was a Physical Problem  "Library/Application Support/Techtool Protection/McIntosh HD/Directory Backup 2011-11-01-16-28-16"
    You should not keep those files for long, and probably shouldn't back them up (if you need them at all -- since you do regular backups, I'm doubtful just how worthwhile that feature is).
    "Unable to complete backup. An error occurred while copying files to the backup volume".
    One of Apple's maddeningly incomplete messages. Most likely, there's a problem with a file (quite possibly the one CCC didn't like).  See #C3 in Time Machine - Troubleshooting for details and instructions on finding and fixing it.
    If you continue running the Directory Protection app, be sure to exclude your Time Machine drive from it (as it will just take up lots of room, and won't help repair your backups if there's a problem);  and exclude the folders it creates from being backed-up by Time Machine (as they'll create large backups, and you probably can't use the backed-up folders anyway), per #10 in Time Machine - Frequently Asked Questions.

  • Can anyone help me?Time Machine couldn't complete the backup to...  An error occurred while copying files. The problem may be temporary. If the problem persists, use Disk Utility to repair your backup disk.  What is the problem?  I've made no changes.

    I recently starting receiving the error message "Time Machine couldn't complete the backup to... An erro occurred while copying files.  The problem may be temporary.  If the problem persists, use Disk Utility to repair your backup disk.  I have had no problems backing up my MacBook Pro 2011 to my Western Digital My Book Live through a Linksys EA4500 router until recently.  I've made no major changes.  I've ran a diagnosis on my back up drive with no problems.  The Time Machine back up starts, but about after about 5 to 10 minutes I get the error message.  I can see the shared drive in Finder.  The light on the drive blinks while it starts the back up.  I can see the shared folders on the networked drive.  The backup process starts but for some reason it just stops.  Can anyone help?

    You can't repair a network volume in Disk Utility.
    Backing up to a third-party NAS with Time Machine is risky, and unacceptably risky if it's your only backup. I know this isn't the answer you want, and I also know that the manufacturer says the device will work with Time Machine, and that it usually seems to work. Except when you try to restore, and find that you can't.
    If you want network backup with Time Machine, use as the destination either an Apple Time Capsule or an external hard drive connected to another Mac or to an 802.11ac AirPort base station. Only the 802.11ac base stations support Time Machine, not any older model.
    If you're determined to keep using the NAS for backup, your only recourse for any problems that result is to the manufacturer (which will blame Apple.)

  • Using Time Machine to back up two systems, OS10.8.3, and OS 10.6.8. Sometimes it backs them up, sometimes I receive this: Backup was not performed because an error occurred while copying files to the backup disc. The problem may be temporary...

    Using Time Machine to back up two systems, OS10.8.3, and OS 10.6.8. Sometimes it backs them up, sometimes I receive this: Backup was not performed because an error occurred while copying files to the backup disc. The problem may be temporary...

    Hello,
    Thanks to the great Pondini...
    http://pondini.org/TM/C3.html

  • Problems copying files to a SMB share.

    Hello,
    Having some odd issues since moving to 10.6. It appears to be a combination of two problems.
    We are in a PC based Active Directory environment. The Mac is bound to the AD and has a Mobile account configured. The problem is with copying files to the network Home folder.
    On attempting to copy a file to the network drive I received a "The operation can't be completed because you don't have permission to access some of the items" error. This only seems to effect some files. I checked the permissions on both the file I was attempting to copy and the destination folder. I had full read/write access to both.
    I attempted to copy the file with the terminal and got an error that I was unable to copy the extended file attributes of the file as I did not have permission.
    Using the xattr command I could see that the file had the com.apple.TextEncoding attribute. I used the xattr -d command to delete the attribute and I was then able to copy the file with the Finder. Another file I tested that I could not copy had the com.apple.FinderInfo attribute. Deleting this attribute also allowed me to copy the file.
    It seems that any file with extended file attributes in 10.6 cannot be copied to our SMB shares. I have tested this on all of our 10.6 Macs with exactly the same result. 10.5 has not had the same problem.
    Now for the second problem. After copying the file as part of the testing I attempted to copy the same file over and replace the existing file and got the error "The Finder can't complete the operation because some data in "" can't be read or written (Error code -36)". I attempted to this a number of times and found that approx 50% of the time it does copy with no error. Checking the Console gives me the following message for the times it does give an error :
    27/10/09 4:03:27 PM /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder[153] Allocator race detected: transaction is not verified for -101/2 - test7.txt
    Any light that can be shone on this issue would be great. This means for us that OS X 10.6 is fundamentally broken and can't be installed on any machines.
    -Justin

    Just posted on the Entourage Help Blog: Workaround for saving Office 2008 files to SMB servers in Snow Leopard
    http://blog.entourage.mvps.org/2009/12/workaroundfor_saving_office_2008_files_to_smb_servers_insn.html
    According to Craig, a poster on the microsoft.public.mac.office newsgroup:
    Changing the owner of the share to NETWORK SERVICE will solve the problem. I have tested this on a test share I set up during troubleshooting and it works! I have told my MS support rep about the workaround and she was going to spread it around. She mentioned that Apple appears to have a fix in the works but not to expect it to be released until February!

  • Problem with copying files , zen Vision

    H, I would like to ask you about that, in zn vision m when i copy files from computer to player everything is ok, but if i want to copy fies from player to computer files doesn't come to computer.Maybe someone know what can i do. cheers

    To solve ur problem try using the usb 2.0 complianr cable to connect ur player to pc. Use the original cable that comes with the player. Your problem is associated with not using the usb 2.0 compliant cable. Change the cable and your problem will be solved. If u need further assistance u can mail me at :[email protected]

  • Time Machine Error: "An error occurred while copying files. The problem may be temporary. If the problem persists, use Disk Utility to repair your backup disk."

    I have a MacBook Pro 2.8 GHz Intel Core 2 Duo with 4GB, 500GB HDD, running 10.8.2 My computer as been running slow and fearing my HDD might die. I bought a brand new 1TB G-Drive from Apple yesterday and started my back up. It gets to just over 22GB backed up then I get this error message:
    "An error occurred while copying files. The problem may be temporary. If the problem persists, use Disk Utility to repair your backup disk."
    Anyone out there who might be able to help me fix this?

    I have a MacBook Pro 2.8 GHz Intel Core 2 Duo with 4GB, 500GB HDD, running 10.8.2 My computer as been running slow and fearing my HDD might die. I bought a brand new 1TB G-Drive from Apple yesterday and started my back up. It gets to just over 22GB backed up then I get this error message:
    "An error occurred while copying files. The problem may be temporary. If the problem persists, use Disk Utility to repair your backup disk."
    Anyone out there who might be able to help me fix this?

  • Permissions problem after using Migration Assistant - unable to copy files

    I have a PowerBook G4 and 2 iMac G5 desktops - one iMac at home and one at work. I've had the iMac at home and the PowerBook for a while. The iMac at work is one I've just inherited from another user. Both are exactly the same model - 2Ghz iMac G5 (ambient light sensor). All 3 machines are running Mac OS X 10.4.6.
    I decided to use Migration Assistant to transfer my Admin user account on the PowerBook to my work iMac G5, all of which worked great. So I now have an exact copy of the user folder from my PowerBook on my work iMac G5, and consequently the same combination of username/password.
    When I mount the drive from my PowerBook on my work iMac via AFP I can copy files from the PowerBook to the iMac. But if I try to copy the file back to the PowerBook I receive the error "The operation cannot be completed because you do not have sufficient privileges for some of the items". The file does appear on the PowerBook, but it is 0K and therefore useless.
    Worse, if I'm replacing a file on the PowerBook, I get the usual "An item named "blah" already exists in this location..." dialog. If I click Yes to replace the file it is wiped, but then the permission error pops up leaving me with a 0K file on the PowerBook and no original.
    If I mount the work iMac drive on my PowerBook I see exactly the same issue - i.e. I can copy to the local machine from the mounted drive. But I cannot copy anything back without receiving the permissions error.
    My home iMac G5 was not set up using migration assistant, but I do use exactly the same combination of username/password. It does not exhibit the same behaviour. I can mount the PowerBook drive on the home iMac and happily copy files back and forth with no permission errors at all. And the same if I mount the home iMac drive on the PowerBook - no problems.
    So I'm guessing that this behaviour is a result of using Migration Assistant to create the user account on my work iMac. If I log into another account on my work iMac, mount the PowerBook drive and copy a file to the PowerBook it works fine. The problem only occurs in the account created by Migration Assistant.
    Does anyone know how to resolve this, short of having to create a new user account on the work iMac and move all my files from one account to the other?
    PowerBook 12" G4 867Mhz & 2 X iMac 20" G5 2Ghz   Mac OS X (10.4.6)  

    Hi,
    you need to adjust the permissions for the files on your harddrive.
    I think you have serveral users in different groups that may result a permission conflict.
    - Put or copy your files you want to to a new folder.
    - Use this tool, its easy to use for ppl that are not familiar with unix permission setup over the terminal: http://www.macupdate.com/info.php/id/6440
    - give all files recursively all permissions (for testing) (777, owner, group, others)
    - then test the copy procedure
    this should help
    Regards Thorsten

Maybe you are looking for

  • Why no JAVA support ,very disappointed

    It seem to be less Java support on Nokia rather than others languages ???for instance i just looking for last ten years 1992 technology that is SMS and how to send a sms using java ...???the answer is no. Is Java that bad ???.... :<

  • Space between text and images?

    I have a gallery of images with headings above them and am trying to change the distance between the text and the images. I have tried floats and padding but cant get it to work. My headings are in a table and my images are not so it seems that there

  • Would like to convert songs!

    Hi,I am using iTunes on a Windows computer and have NEVER been able to use the CD burning program that is a part of iTunes. (I recently updated my version of iTunes and the computer was finally kind enough to explain that this was because my computer

  • Trying to join two views that have different column types

    I want to join view1 and view2 on region and city int columns. Need to break apart View1 varchar field into two Int fields and replace any non-numeric values with zeros. View1 has a single Region_City field that is VARCHAR. the last record is erroneo

  • SAFARI suddenly can't open pages

    Hi, SAFARI on my iPad suddenly can't open certain pages (including this Apple discussion page) that I used to be able open without any issues. Sometimes certain pages don't appear correctly. I did restart my iPad and also delete cookies and browsing