Superdrive only reads half the files on a DVD

I am running Mac OS X v10.3.9 on a 1.25 ghz G4 iMac.
I got a commercially produced data DVD for Christmas. I don't know if it is dual layer or what, but it contains 5.35 GB of mostly acrobat files.
I can read and/or copy about half the files on the disk, the other half of them error out or lock up the finder when I try to copy and when I just try to read/open them the ball spins for a long time then just stops without opening anything.
All the files open without difficulty on the Windows PC at work.
Is this weird or what?
I rebuilt my permissions and no improvement. Any ideas what else I should try?
Thanks!!

Could the disc(s) in question have been burned using a utility that allowed
multiple sessions; and not been set to be used in both Mac and PC?
Some can do that and not be recognized. Third party disc burning utilities
can also add files to burned CD-RW or DVD/RW discs; but they may not
all be seen by the different optical drives and/or software in other systems.

Similar Messages

  • I have a document that I wrote today on my phone, went to open it again and the app kept crashing or it would only open half the file. Is anyone else having this issue? On the preview it shoes the whole file, but when I open it only shows a few paragraphs

    I have a document that I wrote today on my phone, went to open it again and the app kept crashing or it would only open half the file. Is anyone else having this issue? On the preview it shoes the whole file, but when I open it only shows a few paragraphs. When I email the file it only shows a few paragraphs, but when I go to open it both on my ipad and iphone it crashes the app.
    Everything is up to date.

    I also have Jolly's problem. I found the iMovie 9.0.9 folder and tried to launch the older version of iMove. It would not launch. I removed all of the iMovie preferences from the Preferences folder, removed iMove 10 from the applications folder, and restarted my Mac. iMove 9.0.9 still won't launch and I can't access my videos created with the older version of iMovie. Is there a way to uninstall iMovie 10 and reinstall iMovie 9.0.9?
    I am running Yosemitie on a  iMac.
    Paul

  • CS4 Batch processing only processes half the files!

    I scan 6x6 negs on an Epson scanner and when they are done they need to be rotated 90 degrees and flipped horizontaly. I set up an action to do this (Rotate, Flip, Save and Close) and everything was going swimmingly - then recently I've started having problems.
    For example - I've scanned 60 images which I select in Bridge and then open them in PS CS4. I select Automate>Batch and then select my saved action and away it goes. PS chugs its way through the 60 photo's and closes them all (so it looks like they have all been processed), but when I go back to Bridge and it starts refreshing the thumbnails only 30 of them have been rotated and flipped. So then I select the remaining 30 images and batch process them - this time it only processes 15 and so on. This is really annoying as if I get down to around 9 images it won't process any of them!
    Any ideas?
    Cheers
    Simon

    Curt Y's comments sound good to me, too.
    As a "test," try your action on a folder and check Bypass Open (that option should still be in CS4) and see if that handles all of the folder - after you take Curt's advice. Though Batch normally just Opens one at a time, and the computer should recover the resources used for that one on Close, it might not be happening for you.
    Good luck, and let us know if anything works,
    Hunt
    Also, you might want to add your full system specs. if you still have the issue. I'd pay very close attention to the I/O sub-system, i.e. the HDD's, their speed, size, free space, controller type and how they are allocated on your system.

  • Reading in only half the file

    Using this code I am only reading in Half the file:
    BufferedReader in = new BufferedReader(new FileReader(inputArg));
    while(in.readLine() != null) {
    String record = in.readLine().toLowerCase().trim();
    c2 ++;
    System.out.println(c2 + record);
    But when I use this code I get everything:
    FileInputStream fstream = new FileInputStream(inputArg);
    DataInputStream in = new DataInputStream(
    new FileInputStream(inputArg));
    while (in.available() != 0) {
    String record = in.readLine().toLowerCase().trim();
    c2 ++;
    System.out.println(c2 + record);
    I would like to use the top code because I was told to stop using the DataInputStream class.Hopefully someone can let me know what I am doing wrong up top.
              

    Your code is only reading every other line.
    while(in.readLine() != null) { //here you read a line and check it is not null
    String record = in.readLine().toLowerCase().trim(); //here you read the next line and process itWhat you need to do is read the line only once. Therefore, read the first line before the loop into a string, and reference that string in the loop. e.g.
    String line = in.readLine();
    while (line != null) {
      // do stuff with 'line'
      // at the END of the loop, read the next line ready for the next stage of the loop
      line = in.readLine();

  • I downloaded an album and only have half the songs ...where are the rest :(

    I downloaded an album and only have half the songs ...where are the rest

    Welcome to the Apple Community.
    Try deleting the problematic tune (electing to remove original file if/when prompted) and then re-downloading the file from the iTunes store.
    You can re-download content purchased from the iTunes store (availability varies depending on location) using the purchased option from the Quick Links section in the top right corner of the iTunes homepage in your iTunes application on your computer.
    You can re-download content purchased from the iTunes store (availability varies depending on location) using the purchased option at the bottom of the screen of the iTunes app on your iOS device.
    If the problem re-occurs, select the content which is causing a problem and use the 'Report a problem' button in Your Purchase History using your computer.

  • Read all the files in a folder over and over again

    I want to develop an application that reads all the files in a folder, and once its done reading those files it reads all the files again.
    The purpose for this application is to read all the files in a folder that are continuously being stored in that folder, so that when a new file is created, that file is also read by the application. I then need to compare the date and time in which the file was created to the actual date and time of the system, so that way I can get the most recent file, and then  I will do other operations with this file.
    The thing is that I know how to read all the files in a directory, but I don't know how to cycle through those files again, in order to look for the most recent one, and I don't know how to make the comparison of the time stamps, because I need a precision of one second in the system time and the time the file was created.
    Can someone please help me?
    Thanks in advance!
    Solved!
    Go to Solution.

    I think that I just went the wrong direction.
    What I wanted to do in the first place, was to rename and overwrite every new file in a directory with the same name and file extension, so that every new file overwrites the old file. The thing is that the list folder only lists the files the first time and then keeps on telling me there are no files to be read even though there are new files.
    What I need now is a way to overwrite the old files with the same name, and keep searching for every new file that is going to be stored in the directory.
    I will leave the code that I have right now, so that you can tell me what do I need to modify in order to read every new file that's going to be created in that directory.
    Thanks in advance for your help!
    Attachments:
    Overwrite Files.vi ‏12 KB

  • Alerts only working half the time, phone only rings half the time on incoming calls,settings all ok

    my alerts for text messages, vip emails and voicemail are only sounding half the time and same with phone ringing on incoming calls...have checked settings, all are ok, have powered phone down and back up..any suggestions why i dont get alerts and phone ring all the time?

    You can use http://support.apple.com/kb/ts5180. if that does not work you have to do repair.

  • Function Module To read all the Files in a Given UNIX directory.

    Can anyone provide me with a FUNCTION MODULE which reads all the files available in a UNIX directory?
    I have the UNIX directory given. I need to find all the files available in that particular Directory so that I can choose and process accordingly. Probably I can store all files in an Internal Table.
    Thanks in advance.
    Sunil

    Hi Nick,
    Thankyou very much for the response.
    The Function Module /SAPDMC/LSM_F4_SERVER_FILE is interactive wherein we can select only one file.
    But my requirement is I need to collect (probably in an internal table) all the files exixting in the given UNIX directory.
    Can you please find in that direction. I would be very grateful.
    Thanks.
    Sunil

  • Excel not letting user save to shared drive, only user using the files, yet it says someone else is using the file.

    I have seen this problem discussed before, but have never seen a clear cut solution.
    I have a user using Excel 2013. She can create and open files locally, but when she tries to move or save to a shared network drive, she gets the error "Someone else is working in (shared drive/filename) please try again later. She's the only one using
    the file most of the time.
    I have done a repair on the Office installation, but the user is still having the issue, and I need to remedy this. She has appropriate file/folder permissions on the network. Really stuck on this one.

    Hi,
    As we know, Office creates TMP files like "$.tmp file" when you open a document. Saving does not delete the files if we still have them open. And this issue occur with network drive not local disk, so
    it might be caused with the account permission of the network drive. If your user has no delete permission, the temp file might be not delete after closed the file. Please try to check the permission first.
    Then, if there are some mistaken operations when using the files in network drive, we could delete the temp file manually, and then the error would disappear. Please see the similar thread:
    https://social.technet.microsoft.com/Forums/office/en-US/63fb4e70-4de7-45c4-a2ca-ff7209687553/excel-file-that-always-shows-a-certain-user-has-it-open?forum=excel#3e0a52bd-3ee9-4dce-8fe3-63a0937c4eed
    Hope it's helpful.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • ITunes only imports half the song+running very slow!

    Ok, so I've been reading through these postings and it looks as though many are experiencing the same issues! When I import a song to iTunes only portions of the file are imported, then iTunes skips ahead and downloads the next song. Also, the application runs very slowly and takes a long time to load. Are there any indications that suggest these issues will be resolved with the next update? Does anyone know when to expect the next version of iTunes? Will going to the Apple Store help my cause? I just spent $300 and I want this to work. What should I do? Also, it says I'm running v 6.0.0.18???
    hp laptop   Windows XP  

    Other people have been having similar problems with songs over the last few days, I assume that there has been a problem with Apple's servers.
    Depending upon what country that you are in (music can't be re-downloaded in all countries) then try deleting it from your iTunes library and redownload it via the Purchased link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes : re-downloading.
    If you aren't in a country where you can re-download music or if it re-downloads in the state then try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via Store > View My Account and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find that song and use the 'Report a Problem' link.

  • I chose double sided printing and it only printed half the pages. it didn t ask me to flip them

    I chose doubke sided printing on my F2280 and it only printed half the pages for me. . . . .  .I didn task me to flip them round and continue and it is quite a big document to print it over again
    can you help please? : )
    Thanks

    Sometimes the wireless MagicMouse can be erratic and seem to automatically zoom in, etc.  Try going to System Preferences and detuning the sensitivity settings, see if that helps.

  • HT4623 Gems blast game update only shows half the screen

    On 5/4 i downloaded an update to the Gems Blast game. After the update i can only view half the game and the autorotate function has been turned off. Any one else notice this and what is the fix

    Hey there,
    Try removing the game from your iPod and then resyncing it to see if that helps. A file may have become corrupt during the transfer process. Its worth a shot. Hope this helps.
    B-rock

  • HT1386 i bought a compilation album but it will only sync half the songs whys that

    i bought a compilation album but it will only sync half the songs whys that

    Hello Funkylildiva,
    Thank you for contacting Apple Support Communities.
    The following article addresses downloading past purchases.
    Download past purchases
    http://support.apple.com/kb/HT2519
    If, after going through this article, you are still having problems, there are links to report a problem or contact iTunes Store suppport at the bottom.
    Regards,
    Jeff D.

  • Cannot delete itunes from pc,message states. a network error occurred while attempting to read from the file C:\windows\installer\itunes.msi

    ITUNES WILL NOT DELETE FROM ADD @ REMOVE PROGRAMS,
    MESSAGE, READS  a network error occured while attempting to read from the file  C:WINDOWS\installer\iTunes.msi

    All sorted now just needed to repair itunes from control panel

  • Reading all the files from Application Server in a specific folder

    Hi,
    I want to read all the files present in a folder on Application Server ( AL11 ). My problem is that I do not know the name of the file but I know the folder path where files are present.
    I need to go to this folder and pick up all the files present in this folder and then process these files in my program.
    Can any one help me in this!
    Regards,
    Lalit

    You can use a call to
    C_DIR_READ_START'
    and
    CALL 'C_DIR_READ_NEXT'
    Regards,
    John.

Maybe you are looking for

  • Weird MacBook Pro (15 inch, mid 2009) internet issue

    For the past week I've been having trouble with the wireless connection on my MBP. First off, I know it's not the router/modem because I have 4 other devices (pc, another macbook, phones) connected and those all work fine. The problem I'm having is t

  • Cannot be launched

    Please help me ... I'm getting this message Adobe acrobat 8.10 Professional cannot be launched at this time. you must launch at least one other suite compont(such as adobe photoshop)before launching acrobat 8.1.0 Professional. I did open Photoshop, b

  • Can Oracle 8.0.6 reports connects to Oracle 11g Database

    Hi, I know Oracle 8.0.6 report is already out of support. I want to build some environement. In this context, I want to know, where Oracle Reports 8.0.6 can connect to Oracle 11g R2 database ? Pl suggest me urgently. thanks & regards parag

  • Selecting manager names for 20 levels

    Hi, Could you please help me on the following scenario? Table "Base" holds the list of employee ids and names. Table "Mgr" holds the list of employee ids and their mgr ids (Who are also an employee) from level 1 to level 20. The requirement is to sel

  • Mac Mini i7 Overheating and Freezing

    Over the last year I have rarely taken my laptop out the door. I have been able to do most everything on my iPad when mobile. So after a decade of not owning a desktop, I recently bought a used Mac Pro for the office and new Mac Mini for home.  I upg