Problem Copying ISO Files Between Harddrives

Page 6 of 6 FirstFirst ... 456

  1. Posts : 33
    Windows 7 Ultimate Professional Media Center 6.01.7601 Service Pack 1 (32-bit)
    Thread Starter
       #51

    Golden said:
    Hi Vangle,

    Could you try this please:

    Code:
    xcopy C:\rld-me3a.iso E:\rld-me3a.iso /J
    Lets see if unbuffered IO does the trick.

    Regards,
    Golden
    C:\Users\Matt>xcopy C:\rld-me3a.iso E:\rld-me3a.iso /J
    Does E:\rld-me3a.iso specify a file name
    or directory name on the target
    (F = file, D = directory)? d
    C:\rld-me3a.iso
    File creation error - The file or directory is corrupted and unreadable.
      My Computer


  2. Posts : 10,796
    Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
       #52

    vangle said:
    C:\Users\Matt>copy C:\testfolder\rld-me3a.iso C:\testfolder\copy-rld-me3a.iso
    The file or directory is corrupted and unreadable.
    0 file(s) copied.

    C:\Users\Matt>copy C:\testfolder\rld-me3a.iso c:\copy-rld-me3a.iso
    The file or directory is corrupted and unreadable.
    0 file(s) copied.

    For rld-me3a.iso (7.94 GB) from windows 7 (C: ) to E:
    It fails at:
    Time remaining: About 60 seconds
    Items remaining: 1 (3.61gb)

    For a different one (from C:\Users\Matt\Documents to E: ) (7.42 gb)
    It fails at:
    Time remaining: About 60 seconds
    Items remaining: 1 (1.78 gb)

    C:\Users\Matt>move C:\testfolder\rld-me3a.iso C:\test.iso
    1 file(s) moved.
    so move success. nice. But that took only 1 or 2 seconds...right? It just put a pointer in another folder to the blocks on disk.

    The ISO files copy fails always on same place?, so

    For rld-me3a.iso (7.94 GB) from windows 7 (C: ) to E:
    It fails at:
    Items remaining: 1 (3.61gb)

    For a different one (from C:\Users\Matt\Documents to E: ) (7.42 gb)
    It fails at:
    Items remaining: 1 (1.78 gb)

    copy them in windows to test! The ISO's have bad blocks on disk!
    perform from elevated command prompt:

    Code:
     
    chkdsk/f/r c:
    chkdsk/f/r e:
    any errors, and are they corrected? This takes hours, please be patient.
      My Computer


  3. Posts : 33
    Windows 7 Ultimate Professional Media Center 6.01.7601 Service Pack 1 (32-bit)
    Thread Starter
       #53

    Kaktussoft said:
    vangle said:
    C:\Users\Matt>copy C:\testfolder\rld-me3a.iso C:\testfolder\copy-rld-me3a.iso
    The file or directory is corrupted and unreadable.
    0 file(s) copied.

    C:\Users\Matt>copy C:\testfolder\rld-me3a.iso c:\copy-rld-me3a.iso
    The file or directory is corrupted and unreadable.
    0 file(s) copied.

    For rld-me3a.iso (7.94 GB) from windows 7 (C: ) to E:
    It fails at:
    Time remaining: About 60 seconds
    Items remaining: 1 (3.61gb)

    For a different one (from C:\Users\Matt\Documents to E: ) (7.42 gb)
    It fails at:
    Time remaining: About 60 seconds
    Items remaining: 1 (1.78 gb)

    C:\Users\Matt>move C:\testfolder\rld-me3a.iso C:\test.iso
    1 file(s) moved.
    so move success. nice. But that took only 1 or 2 seconds...right? It just put a pointer in another folder to the blocks on disk.

    The ISO files copy fails always on same place?, so

    For rld-me3a.iso (7.94 GB) from windows 7 (C: ) to E:
    It fails at:
    Items remaining: 1 (3.61gb)

    For a different one (from C:\Users\Matt\Documents to E: ) (7.42 gb)
    It fails at:
    Items remaining: 1 (1.78 gb)

    copy them in windows to test! The ISO's have bad blocks on disk!
    perform from elevated command prompt:

    Code:
     
    chkdsk/f/r c:
    chkdsk/f/r e:
    any errors, and are they corrected? This takes hours, please be patient.
    Code:
     C:\Windows\system32>chkdsk/f/r c:
    The type of the file system is NTFS.
    Cannot lock current drive.
    
    Chkdsk cannot run because the volume is in use by another
    process.  Would you like to schedule this volume to be
    checked the next time the system restarts? (Y/N)
    Code:
     C:\Windows\system32>chkdsk/f/r e:
    The type of the file system is NTFS.
    Volume label is New Volume.
    
    CHKDSK is verifying files (stage 1 of 5)...
      105728 file records processed.
    File verification completed.
      44 large file records processed.
      0 bad file records processed.
      0 EA records processed.
      0 reparse records processed.
    CHKDSK is verifying indexes (stage 2 of 5)...
      112902 index entries processed.
    Index verification completed.
      0 unindexed files scanned.
      0 unindexed files recovered.
    CHKDSK is verifying security descriptors (stage 3 of 5)...
      105728 file SDs/SIDs processed.
    Security descriptor verification completed.
      3588 data files processed.
    CHKDSK is verifying Usn Journal...
      8712544 USN bytes processed.
    Usn Journal verification completed.
    CHKDSK is verifying file data (stage 4 of 5)...
      105712 files processed.
    File data verification completed.
    CHKDSK is verifying free space (stage 5 of 5)...
      187765312 free clusters processed.
    Free space verification is complete.
    Windows has checked the file system and found no problems.
    
    1579253759 KB total disk space.
     827917424 KB in 101992 files.
         46600 KB in 3589 indexes.
             0 KB in bad sectors.
        228487 KB in use by the system.
         65536 KB occupied by the log file.
     751061248 KB available on disk.
    
          4096 bytes in each allocation unit.
     394813439 total allocation units on disk.
     187765312 allocation units available on disk.
      My Computer


  4. Posts : 19,383
    Windows 10 Pro x64 ; Xubuntu x64
       #54

    vangle said:
    Golden said:
    Hi Vangle,

    Could you try this please:

    Code:
    xcopy C:\rld-me3a.iso E:\rld-me3a.iso /J
    Lets see if unbuffered IO does the trick.

    Regards,
    Golden
    C:\Users\Matt>xcopy C:\rld-me3a.iso E:\rld-me3a.iso /J
    Does E:\rld-me3a.iso specify a file name
    or directory name on the target
    (F = file, D = directory)? d
    C:\rld-me3a.iso
    File creation error - The file or directory is corrupted and unreadable.
    Hi,

    The ISO is a file, not a directory. When prompted with:

    Does E:\rld-me3a.iso specify a file name or directory name on the target
    (F = file, D = directory)?
    Type f

    I'm not sure it will help the situation, but give it a go.

    Regards,
    Golden
      My Computer


  5. Posts : 33
    Windows 7 Ultimate Professional Media Center 6.01.7601 Service Pack 1 (32-bit)
    Thread Starter
       #55

    Golden said:
    Hi,

    The ISO is a file, not a directory. When prompted with:

    Does E:\rld-me3a.iso specify a file name or directory name on the target
    (F = file, D = directory)?
    Type f

    I'm not sure it will help the situation, but give it a go.

    Regards,
    Golden
    Hey,

    I was going to put it as a file but it had E:\ so i thought it was specifying the destination but i'll try F now.

    During the process I repeatedly get a pop up saying:
    xcopy.exe - Corrupt File
    The file or directory \rld-me3a.iso is corrupt and unreadable. Please run the Chkdsk utility.

    Result:
    Code:
    C:\Windows\system32>xcopy C:\rld-me3a.iso E:\rld-me3a.iso /J
    Does E:\rld-me3a.iso specify a file name
    or directory name on the target
    (F = file, D = directory)? f
    C:\rld-me3a.iso
    File creation error - The file or directory is corrupted and unreadable.
      My Computer


  6. Posts : 1,965
    win 7 X64 Ultimate SP1
       #56

    Curious


    Right click the file you are having a problem with and and in the general tab look to see if there is a button to unblock. If so click the unblock and try a copy again.
      My Computer


  7. Posts : 2,171
    Windows 7 Ultimate x64
       #57

    Actions taken and results described thoughout the progression of this thread is now leading me to think this may really be a hardware issue. I think I would make sure I had good backups of the drive that has the iso file that cannot be copied {I think it was C:}, boot into BIOS to run HD tests that may be available there, download HD manufacturer diagnotics and run them.

    Are you getting any SMART messages for this drive when you boot the machine?

    Even if it turns out to be a non-issue, it's good to know the health of your drive, as well as make sure you have everything backed up properly! :)
      My Computer


  8. Posts : 10,796
    Microsoft Windows 7 Home Premium 64-bits 7601 Multiprocessor Free Service Pack 1
       #58

    vangle said:
    Code:
     
    chkdsk/f/r c:
    any errors, and are they corrected? This takes hours, please be patient.

    Code:
     C:\Windows\system32>chkdsk/f/r c:
    The type of the file system is NTFS.
    Cannot lock current drive.

    Chkdsk cannot run because the volume is in use by another
    process. Would you like to schedule this volume to be
    checked the next time the system restarts? (Y/N)
    Would you like to schedule this volume to be
    checked the next time the system restarts? (Y/N)

    Did you type Y and did reboot? Then a chkdsk takes place on disk C. any errors? fixable?
      My Computer


  9. Posts : 2,171
    Windows 7 Ultimate x64
       #59

    Kaktussoft said:
    Did you type Y and did reboot? Then a chkdsk takes place on disk C. any errors? fixable?
    I think the OP said it did run on reboot, but I don't recall if he ever posted what he found in the event log for the chkdsk run. He'd have to go there to get a screenshot of it to post.
      My Computer


 
Page 6 of 6 FirstFirst ... 456

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 01:16.
Find Us