File renumbering question

How can I make the following script renumber files say up to 5,000?  Currently it stops at 99.
Thanks.
global theFolder
on run
    tell application "Finder"
        activate
        set theFolder to ¬
            (choose folder with prompt "Where are my photos?")
        set theFiles to every file of theFolder
        set thetotalCount to count of theFiles
        set jpegList to (every file of theFolder whose name ends with ".JPG")
        set jpegCount to count of jpegList
        set theOtherFolder to theFolder as alias
        repeat with i from 1 to count of theFiles
            set theName to name of item i of jpegList
            if theName contains "." then
                set nameSuffix to (text -1 thru ¬
                    (offset of "." in theName) of theName)
            else
                set nameSuffix to ""
            end if
            set name of item i of jpegList to ¬
                (text -2 thru -1 of ¬
                    ("0000" & i)) & nameSuffix
        end repeat
    end tell
    activate
end run

fifth to last line should read:
set name of item i of jpegList to (text -4 thru -1 of ("0000" & i)) & nameSuffix
the 'text -x thru -1' bit specifies that the script should take the last x characters of the string.  using minus 4 gives you a range up to 9999.

Similar Messages

  • I got new hard driver for my MacBook I don't have the cd but I do have flash drive that has the software I need help because when I turn on my laptop it shows me a file with question mark how can I install the software from the flash driver?

    I got new hard driver for my MacBook I don't have the cd but I do have flash drive that has the software I need help because when I turn on my laptop it shows me a file with question mark how can I install the software from the flash driver?

    Hold down the Option key while you boot your Mac. Then, it should show you a selection of devices. Click your flash drive and it will boot from that.

  • HT1752 My MacBook on startup shows file with question mark ,, what now?

    My Mac shows file with question mark, what now.

    Press the power button down to force a emergency use only hardware shutdown.
    Press and hold the Option/alt key on the built in keyboard, boot the machine.
    If MacintoshHD appears, select it and click the arrow, then in System Preferences > Startup Disk reset that. Done.
    Sometimes a NVRAM reset is required then the above done again.
    Folder with question mark issue
    ..Step by Step to fix your Mac
    If MacintoshHD doesn't appear, or if it boots to gray screen or other issues, then it's more complicated of a fix, but once inside OS X then reset the Startup Disk.
    Gray, Blue or White screen at boot, w/spinner/progress bar
    ..Step by Step to fix your Mac
    You might need this if you don't have a recent backup and your problem is software related, Disk Utiltiy can't fix the drive and recommends you backup, erase and install.
    .Create a data recovery/undelete external boot drive
    If Disk Utility + Hardware Test shows no boot drive, then you have a dead drive or cable, or Mac issue.
    My computer is not working, is my personal data lost?

  • File and question mark when starting

    Flashing file and question marl when i start my computer

    There are four general causes of this issue:
    1. The computer's PRAM no longer contains a valid startup disk setting when there aren't any problems with the disk itself. This can be checked for by pressing the Option key and seeing if the drive appears.
    2. The internal drive's directory structure has become damaged. This requires usage of an alternate bootable system to perform the repair.
    3. Critical system files have been deleted. This requires usage of an alternate bootable system to reinstall them.
    4. The internal drive has died or become unplugged. This is the most likely case if the computer took a sharp impact or there are unusual sounds coming from its location.
    (103563)

  • .AVI file format question

    Upgrading from CS2 to Photoshop CS5
    I found out after the fact that in order to edit video you need CS5 Extended.
    So, I then went and returned regular and upgraded to Photoshop CS5 extended.
    (See my other thread for details, but installing the 12.01 patch is not an option at this time.)
    Try to use file open to open a .AVI file from one of my cameras and get a message of "unrecognized file format".
    Was able to import the 7 second video into layers.
    Checked support issues, and installed Quicktime 7.6.8
    Also, due to 12.01 issues, reinstalled Photoshop CS5 Extended AFTER upgraded Quicktime to 7.6.8
    Machine specs:  Toshiba Satellite P30  Intel Pentium 4 CPU 3.60 GHZ (Hyperthreading Dual Core) 2GB RAM ATI Mobility Radeon X600 Win XP Professional SP3 About 12 GB disk space available at install time.
    Note that Quicktime will open the .AVI file in question with no problems, as well as Roxio software (trying to get rid of that with CS5)

    I talked to support via phone and it appears the the problem is in installation.  The install of CS5 extended did not take over the regular install.  So, I need to start by completely uninstalling AGAIN and installed extended from scratch AGAIN.
    I did try the program mention GSPOT as well.  It says AVI codecs are installed on the machine inquestion.  I will get more informaiton tonight afte rI do the re-install and see what happens.

  • File Serializable question

    hi,
    i know i've seen plenty of posts asking how to transfer files, my question is why doesn't simplying sending a file object from the client to the server work, file just implement Serializable? is it because the contents don't travel with the object? i'm pretty sure the object will go across, via socket programming or rmi, but why not the contents, or will they?
    Thank you.

    Because the file object, to the best of my knowledge,
    does not hold the contents, it just contains
    information about the file, such as its path.Very true. I never thought about it in this depth before, but the [url http://java.sun.com/j2se/1.4.1/docs/api/java/io/File.html]API says:
    "An abstract representation of file and directory pathnames."
    That's all it is, a representation, not an actualy file.
    Cheers,
    Radish21

  • Checkpointing - control file contents question

    Some clarification is needed if possible...
    When you commit a transaction:
    - commit scn is recorded in the itl of the data block and undo segment header
    - lgwr records the committed scn (for all data blocks involved) to the redo log
    Checkpoint Event
    - (3 seconds or possibly less passes by) CKPT wakes up and signals DBWn to write dirty (modified and committed)
    blocks to disk
    - CKPT records the scn of those blocks in the control file (data file and redo thread sections) and the data file
    header (task of checkpoint when a log switch occurs)
    - Checkpoint position in the Redo Log is forwarded
    Control file contents question:
    When LGWR writes the commit scn to the redo log, who writes the scn to the control file? LGWR or CKPT?
    Also, when is the redo thread scn written?
    Matt

    Matt,
    This is my understanding of the stuff. Feel free to correct me.
    Checkpoint SCN , as I mentioned in my last reply is the marker of the point till which the data is "chekpointed" to the datafiles. This marker tells the controlfile that in the case of the crash, where to start recovery of the datafile and have to go which extent in the redo stream? This is only available in the datafile header and in the controlfile. This doesn't get recorded in the redo log file/stream.
    I mentioned checkpoint queue in my reply too. Though I couldn't find any reference directly mentioned between this and in the checkpoint SCN but I believe my theory , if not totall, partially is correct. The incremental checkpoint is the stuff which makes the decision that how many redo blocks needs to be applied to the datafile if its closed without a proper checkpoint. So this part is maintained in the Datafile header itself in the form of the checkpoint SCN. When not matched with the conrolfile checkpoint SCN, which is always higher than this, a recovery is reported.
    I hope its somewhat correct. Do let me know your views too.
    Cheers
    Aman....

  • Can't log in white screen with flashing file and Question mark

    I've been have trouble with getting on line and screen freezing up. Now I have a solid white screen with a icon of a file and question mark on it flashing. Iv tried unplugging and resetting with no luck.

    Have a look at > A flashing question mark appears when you start your Mac
    Dennis

  • File Duration Question: Any Way to Get Quick Totals?

    Another curious-if-there's-a-way-to-do-this question:
    I notice that Media Manager (for which I've now added a custom key command) will tell me the combined media file size for any group of clips I select in the FCP7 Browser (whether an entire Bin's worth, or even a non-contigous selection of specific clips therein). For individual clips of course I need only look at the Browser's "Size" column.
    Is there an equivalent way to do this vis-a-vis the total duration of a given group of clips -- again, whether an entire Bin's worth, or just a group of individually selected ones? The Browser has its Duration column with running time info for each separate clip, but is there any quick way to get the total, combined running time for a group of multiple clips?
    (An example would be wanting to quickly check how many hours/minutes of material was shot in a given setting, or on particular day, etc., without having to manually add up the Duration info for dozens of separate clips.)
    Any suggestions appreciated.
    Thanks,
    John B.
    Toronto

    While still hoping for a fewer-clicks, Browser-only solution, I have to admit that would indeed provide the desired information.
    Thanks for the reply!
    jb

  • How to Open the FailedFilesLog.txt File (statement), and How to Increase the 100 File Limit (question)

    It took us a while to figure this out, so I'm posting this in case it's helpful for someone out there. Plus, I have a question...
    DPM gave the following error for one of our file servers:
    Description: The replica of Volume D:\ on <servername> is inconsistent with the protected data source. Number of files skipped for synchronization due to errors has exceeded the maximum allowed limit of 100 files on this data
    source (ID 32538 Details: Internal error code: 0x809909FE)
    Recommended action: Review the failure errors for individual files from the log file
    \\?\Volume{8492c150-f195-11de-a186-001cc4ef89a0}\B1E9D373-2C03-464E-A472-99BC93DB1E2A\FailedFilesLog.txt and take appropriate action. If some files fail consistently, you can exclude the folders containing these files by modifying the protection group or
    moving the files to another location.
    So, how do you actually open the FailedFilesLog.txt file shown in this DPM alert? What is this path referring to? Well, this is the mount point for the protected server's replica volume on the DPM server, which is mounted under \Program
    Files\Microsoft DPM\DPM\Volumes\Replica\servername\File System. Here you'll see the mount points for all of the server's protected volumes. However, if you try to open one of these mounted volumes
    in Windows Explorer, you'll get Access Denied, even if you have administrator rights. (If someone knows of a way around this, please let me know). As a workaround, you can access this mounted volume in an elevated
    command prompt. Steps:
    Open an Administrator Command Prompt
    Type mountvol <AnyAvailableDriveLetter>: \\?\Volume{VolumeGUID}
    Example:  mountvol m: \\?\Volume{8492c150-f195-11de-a186-001cc4ef89a0}   Note that we're only using the first part of the path to the FailedFilesLog.txt
    file given in the DPM alert, starting from \\? and ending after the
    } character.
    Next, type m: to change to the newly mounted m: drive.
    Then type cd B1E9D373-2C03-464E-A472-99BC93DB1E2A   This is actually a folder name so we're just going into this folder.
    Finally type dir and you should see the FailedFilesLog.txt file. This file can be copied to another location where it's easier to use (i.e. in Windows Explorer).
    Be sure to unmount this volume when you're done by typing mountvol m: /d in the command prompt. (Mountvol reference:
    http://technet.microsoft.com/en-us/library/cc772586(WS.10).aspx.)
    What a pain, eh? But at least by reviewing the FailedFilesLog.txt file you can determine which files or folders caused the sync to fail and thus take action accordingly.
    Now, here's my question: Where is that registry key that lets me adjust the limit of 100 files that DPM allows to be skipped before it fails the replica? Hopefully someone out there will tell me. I know this can be done because Kapil Malhotra
    said so in this post:
    http://groups.google.com/group/microsoft.public.dataprotectionmanager/browse_thread/thread/a179fa30fb50c9b0/e9a348f2a9386063?lnk=raot.
    Also, does anyone know what the internal error code 0x809909FE means in this alert? Knowing this my help us determine what caused these files to fail. Interestingly, in the FailedFilesLog.txt file, it gave a different error code next to each failed file:
    0x80070002.
    -Taylorbox

    Thanks for responding, Fahd. So, just to be sure...
    Do I add this registry key to the DPM server or to the protected servers (or both)?
    In either case, the ContinueOnFailure key does not currently exist. So, I must create this key and the MaxFailedFiles DWORD value
    manually, right?
    Does the server in which I create this regkey have to be restarted for it to take affect?
    Can the DPM alert for the 0x809909FE error event (for exceeding the limit of 100 failures) please be adjusted to provide a path to the FailedFilesLog.txt file
    that actually works if you click on it?
    Any ideas on why the 0x80070002 "File not found" error happened? The files on the server were simply created and then deleted. Why would such file activity lead to this error?
    Thanks,
    -Taylorbox

  • File Export question and ID3 Tags

    First question, have tried using Apple's recommended method of using QT Pro to export movies as "iPod" but when attempting to sync to an iPod get an incompatible file format. What is the "right" export option?
    Secondly, on one file I've imported it into iTunes then set all the ID3 fields to my liking, then uploaded into iTunes U but the fields are incorrect. I've tried deleting the file from iTunes U several times and re-imported the file into iTunes and set the ID3 fields and still nothing. Any suggestions on how to get my file up and hold the ID3 fields info?
    thanks
    Jerry

    http://www.oit.duke.edu/dms/resources/fileformats.html
    http://www.oit.duke.edu/dms/itunesu/itunes_tagging.html
    If you've been having ID3 issues with MP3s, that was recently corrected (well, just the album art thing, everything else worked as far as I know). I've had bad luck with third party ID3 tag editors, so we are recommending people do it through iTunes.app
    Since you are already doing that, I'd be worried that my site was set to overwrite the tags (this is an option). If you're the admin, you can check it, otherwise you can ask them.

  • TS3423 17" macbook pro won't start blue file with question mark is all that appears on the screen

    My old macbook pro will not start up. Worked fine yesterday, today all I gat is the startup sound and a blank blue screen. After a while the screen shows a file folder icon with a question mark in it. Any ideas

    Question (?) Mark, Blinking Folder, or Gray Screen at Startup
    These are related but not identical issues. Their causes are outlined in Intel-based Mac- Startup sequence and error codes, symbols. Solutions may be found in:
    A flashing question mark appears when you start your Mac
    Mac OS X- Gray screen appears during startup
    In most cases the problems may be caused by:
    Problem with the computer's PRAM - See Resetting your Mac's PRAM and NVRAM.
    Boot drive's directory has been corrupted - Repair with Disk Utility.
    Critical system files are damaged or deleted - Reinstall OS X.
    The disk drive is physically non-functional - Replace the hard drive.
    Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    The main difference if you are using Lion or Mountain Lion is that you must first boot from the Recovery HD:
    Boot From The Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Reinstall Snow Leopard Without Erasing The drive
    1. Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Reinstall Snow Leopard
    If the drive is OK then quit DU and return to the installer.  Proceed with reinstalling OS X.  Note that the Snow Leopard installer will not erase your drive or disturb your files.  After installing a fresh copy of OS X the installer will move your Home folder, third-party applications, support items, and network preferences into the newly installed system.
    Download and install Mac OS X 10.6.8 Update Combo v1.1.
    Reinstalling Lion/Mountain Lion Without Erasing The Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion: Select Reinstall Lion/Mountain Lion and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.

  • Personal File Sharing question

    Hi,
    I have a question about personal file sharing between my iMac Intel (my work computer) and an eMac (student work computer). I work at a college, and our regular back-up system on campus is just not worthwhile, so as a secondary back-up, I created a new account on the eMac (the student computer). I have already successfully accessed the regular student account via personal file sharing (it shows up on the network under the office name given to the computer), but is there a way that I can also connect directly into my new account on the eMac? Is there something that I need to do to make the separate accounts visible?
    Thanks,
    Ken

    I'll try to access this from a Windows PC from the internet first (then try with ubuntu)
    That requires much more work, like finding Outside IP, Port Forwarding, etc., try it locally first.
    1) System Preferences>Sharing>Services tab>Windows Sharing.
    2) Browser won't get you to File Sharing, that would be for System Preferences>Sharing>Services tab>Personal Web Sharing.
    3) By default the Shared folder is shared, but you can log in as the Mac's User & see all that the Mac User can, or Sharepoints for smb...
    http://lowendmac.com/mac2win/04/0623.html
    Get Sharepoints...
    http://www.hornware.com/sharepoints/
    And setup what you wish to share with whom.

  • Catalogs, Missing Files, and Question Marks for Beginners

    Hello, fellow non-power-users. I just wanted to post something here that I've learned with my travails and travels using LightRoom 3. In the past, Adobe has paid me to write for them, and I'm a professional writer. So why am I doing this for free? Because I wish to heck I'd understood this stuff before I dove into LR. Somehow, even with reading a book on the program, I didn't really get it.
    1) Most of the people who are kind enough to post and help on Adobe support and other forums on the Interwebs are power users of Lightroom. The great thing is, they often know what they're talking about. The bad thing is, many of them don't understand what it's like to be a non-power-user who really has no intention of becoming a power user. Be very, very careful before you try to take their advice about any large issue that might have serious consequences for your photos.
    2) LR has about forty million ways to do things, so it can be overwhelming, and you may also receive lots of contradictory information about how to accomplish stuff. If you're like me---not a professional photographer, more a refugee from the annoying land of iPhoto who just needs a *little* more power and customization---you may have trouble streamlining, figuring out the few things you actually need the program to do for you. Try some introductory videos and tutorials, even books, but don't expect them to solve your real problems with the program.
    3) Before you begin, grasp a few concepts:
         a. When you're working in LR, you're working with a "catalog." It shows you images of your photos, but these aren't really your photos. Your actual photos are *files* that live on your computer somewhere. Think of it as a slideshow projected on a wall: you can see the photos on the wall, but they aren't the "real photo." If you walked up to the wall and painted on the projection of a slide, the "real photo" file would not be changed. What LR does is keep track of those wall paintings for you, so if you wanted to print up a version of that slide and include your brush strokes, LR could do that for you. The catalog is a type of database.
         b. So where are those real photos, those files? Probably all over your computer in different places. You may want to consolidate them all in one place before you start using Lightroom. Here's why: once Lightroom thinks your "real photo" is in a certain place, it doesn't want you to move the "real photo" file. Say you have a photo called that someone sent in email. You put it on your desktop. Now you are tempted to drag-n-drop it onto Lightroom. DO NOT DO IT. Because someday, you might want that photo to not clutter up your desktop. You'll drag it to another folder on your hard drive, and BOOM, now Lightroom cannot find the photo.
    You can't work on the photo from within Lightroom. You can't print it. Lightroom will show a question mark ? on its wall-projector slide of your photo file. Often when someone moves files on their computer, it's not a single file on a desktop. It's a bunch of things they are trying to organize. Adobe knows this, which is why they have a "find missing photos" command. They know you are likely to screw this up. The command will show you those missing files. You have to select them individually by hand and search your computer for them to relink. You can spend a lot of time relinking photos. It sucks. Really sucks.
         c. If you do need to move stuff, Lightroom does let you do it, but only from within the program. So, open up LR, and look in the left-hand column for an item called "Folders." (You will be in Library mode to make this happen.) You can move your "real photo" files around from within this area. It is a clunky process and an enormous pain in the butt.
         d. Rant time: For some reason, one of the most sophisticated and long-lived software companies in history, the developers that completely changed the worlds of art, design, photography, and publishing--you got it, Adobe--have not been able to solve this problem and chase down your real photo files if you moved them from within the Finder, the way you normally move files on a computer. Go figure. (Irrelevant note: I've been using their products since Pagemaker 1.0 and it's sort of astonishing that they've never solved this problem, in LR or InDesign or elsewhere. It's like publishing a magazine using Quark in 1995, rushing to find the messed-up links before you hand-carry your ZIP drive over to the printer. Hee hee.)
    4) Decide whether you want to divide your photos into a few separate catalogs, or whether you want one enormous catalog ("master catalog"). Then try not to change your mind.
    Here is my story:
    Summary: I started with multiple catalogs and regret merging them into one.
    I hired a photographer/supposedly-LR guy to set up my LR and he suggested multiple catalogs, each easily saveable (catalog AND its photos) to a single external hard drive. I only made two: one for family photos, one for a big art project. Whenever I asked questions online about using LR, everyone told me to combine all photos into one big master catalog. Eventually I did, and I regret it. As a non-power-user, I screwed up something in the merging process, and ended up with a lot of question-mark, missing-photo problems, and a bunch of duplicate photos to boot. What a waste of time.
    If you're not a pro, you probably don't need a gigantic single database to deal with. If you're someone who uses Dropbox or another non-Adobe cloud method to store and work with your photos, and you don't have unlimited storage, you may find it way more convenient to have a few different catalogs.
    Power users probably don't screw up the process of merging all their catalogs into one. Power users have, from what I've read online, many complicated ways of making a big master catalog work the way they want, say for working on small numbers of files while traveling with a laptop, and then getting that work into the giant master catalog when they get back home to their studios.
    But I am not a power user, and if you're reading this, you probably aren't a power user either. So perhaps my experience will be useful to you.
    5) Paying for plug-ins to help with all this nonsense.
    You can buy plug-ins that help you do things this application should already do by itself. For example, "Duplicate Finder" goes through and finds all the photos that you've accidentally imported more than once into your catalog. Then you can painstakingly go through, figure out which copy to keep, and delete them. Often, these "duplicate" photos are not duplicates of your "real photo" file. But at some point you moved your "real photo" file while you were tidying up your computer files, and later accidentally re-imported that photo into your LR catalog. Since LR doesn't follow your files around when you move them from within your computer/Finder, LR thinks it's a whole brand-new file. It's like your projector is projecting three images on the wall at the same time. You have to figure out which one to keep, which one will save your wall-painting changes, etc. And it is a huge pain in the butt.
    Note that you can click a box when importing photos, a box that says "Do not import suspected duplicates." This can be really helpful for avoiding duplicates in the first place. It is not, however, infallible.
    OK, I hope this helps someone somewhere. I'm going to go back to the horribly time-consuming task of relinking files and trying to make my brain work the way LR's brain works.

    Glad to help!
    Another good thing to do from time to time is to boot from your install CD, then choose "Disk Utility", then do a check (and repair, if necessary) of your boot disk.
    You can't verify or fix a disk you've started from, thus the need to boot from a CD. You can boot from a second hard disk to do this test if it has MacOS on it.

  • File Recovery Question

    Hi there, before I ask my question, let me explain my situation:
    I lost all of my data off my hard drive partition, and used the program "Stellar Phoenix Macintosh 4.0". It is a recovery program that allowed me to view and retrieve my lost files from my deleted partition.
    It managed to recover EVERY file in its original file structure.
    Now, when I try to view pictures, play songs, or do ANYTHING with these files, they don't work, however the FILE SIZE makes sense: Pictures are 1mb-5mb. Songs are 2mb-15mb, etc.
    For example: I get this error when trying to view jpgs:
    The file filename.jpg could not be opened.
    It may be damaged or use a file format that Preview doesn’t recognize.
    I changed the permissions on the file so everyone can "read & write" but that still didn't help. I tried copying the files to another drive, but still no luck.
    If someone could help me either with making the files readable, or a different setting on the recovery program, that would be great.
    Is it possible that the files were viewed in 10.6.2 and I recovered them in 10.6.0?
    Any suggestions would be appreciated!

    30 day trial, no money spent.
    So why would anyone buy this Keith, if they could get full use out of it for up to 30 days, when just 30 hours would probably do ? Excuse the rhetorical question.
    What is noticeable about the various file recovery programs is they let you sample them but mostly require payment if you want to seriously use them.
    It is remarkable in the software universe of freeware, and OpenSource ware, that software recovery are the exception and give no free lunches, or at least none that I know.
    *I suspect you will have to pay for this app to facilitate your file recovery*.
    I'm not sure which one, but there is one that lets you restore one file, just to prove itself, but to get the rest you have to buy the software. Can't remember which one that is but see if you can find it, at least to prove something is recoverable before you fork out the money.
    On the matter of creating a backup image using Disk Utility, did you do it according to these procedures?
    http://support.apple.com/kb/HT1553
    Still, if it has no mountable file system, I doubt if it can be created after the fact.
    Sorry to be unable to throw some sunshine on your problems, but gee you are gonna have a great backup strategy in place after this. ...a little ray there.
    P.S. You need to contact the providers of these software to clarify things - your expectations, payment, whatever.
    Message was edited by: roam

Maybe you are looking for