Recover files deleted by script

Hi all,
I am really desparate i was playing around with a shell postinstall scripts and accidently deleted my whole developer directory where unfortunately my XCode project was(not check in SVN since long time). The delete was done using rm -r command. I was looking into buying the DataRescue 3 software but I downloaded its demo version and it seems that it can't find my files(no files .m or .h). Please any suggestions will be greatly appriciated!! Thank you.
Regards
artOf... deleteing

Try File Salvage.
If that doesn't work out either, you will probably have to send the hard drive out to a professional data recovery service. That will be very expensive.
You didn't have your data backed up, I presume?

Similar Messages

  • Is there a way to recover files deleted from a time machine backup

    My time machine backup drive was full so I wanted to delete some of the Virtual Machine files created with VMWare Fusion from the time machine backup.  I accidentally deleted them all, instead of just some older ones, so I want to know if there's a way to recover or salvage the files I deleted from time machine.

    If is possible do you have a Time Machine backup, What type of files are missing?

  • Is there a way to recover files deleted via rsync?

    I ran rsync to back up my files to an external drive, but I made an error and wiped out some stuff I'd like back from the external. To be specific, I synced a desktop folder to the root folder of the external HD, wiping out its contents.
    I do have a second external with backups on there, but it hadn't been updated since October, so I may lose some stuff. Any options for recovery?

    Maybe possible, maybe not. Above all, don't do anything else with your Mac in the meantime, as any time it needs to create a new file, it will potentially overwrite what's left of one of the files you deleted.
    Then you'll have to invest in an application like Data Rescue II or FileSalvage:
    http://www.prosofteng.com/products/datarescueinfo.php
    http://subrosasoft.com/OSXSoftware/index.php?mainpage=product_info&productsid=1
    (This is not a personal recommendation, I've never used them. They have a free demo that will probably tell you if the files you need are recoverable, but if you're lucky and they are, you'll have to buy the full version to actually recover them.)

  • Is there a way to recover files deleted from icloud?

    I inadvertently deleted a Pages document from my iPhone and it has disappeared from my iPad and iCloud.  Is there any way to recover it?

    Deleting won't make the files erased permanently.As long as those files are not overwritten by new data, it's highly possible to recover them.Those deleted files is still stored on the hard drive, it's just invisible or inaccessible.And the most effective
    way is to rely on some data recovery programs.
    Try this one called Tenorshare Data Recovery. I also encountered the same trouble before.Finally this program helped me recover the file I accidentally deleted from the recycle bin successfully.
    One tip here:Your files will be recovered into the recycle bin.So you'd better not to delete any other files into the recycle bin.Once the deleted files were overwritten by new deleted files,they are all historys!
    You can get it from:  http://www.any-data-recovery.com/product/index.htm

  • Recover Files Deleted Via the Terminal?

    So by accident while doing some stuff in Terminal (long story) everything in my Documents folder on my iMac at work got deleted. I have a backup of all but three subfolders (projects) that were in there.
    I was just wondering if there's any way to get those files back? Most of the file recovery apps and utilities don't mention if they work with files that were deleted in Terminal...

    Your best shot at recovery is Prosoft Data Rescue. There is a free trial to see if it can recover what you need. But don't do another process on that drive until you've downloaded and run it.
    It doesn't matter whether or not they were deleted via GUI or via command line.
    -mj

  • Can I recover files deleted in trash and if so how?

    Hi everyone,
    Blown it this time! in my haste to do things I have lost 7 years of photos. Can anyone reccomend any data recovery software? Or ideas on how to get it without buying. I am looking at Data Rescue 3 at present.
    Cheers
    paul

    Basics of File Recovery
    Files in Trash
    If you simply put files in the Trash you can restore them by opening the Trash (left-click on the Trash icon) and drag the files from the Trash to your Desktop or other desired location. OS X also provides a short-cut to undo the last item moved to the Trash -press COMMAND-Z.
    If you empty the Trash the files are gone. If a program does an immediate delete rather than moving files to the Trash, then the files are gone. Recovery is possible but you must not allow any additional writes to the hard drive - shut it down. When files are deleted only the directory entries, not the files themselves, is modified. The space occupied by the files has been returned to the system as available for storage, but the files are still on the drive. Writing to the drive will then eventually overwrite the space once occupied by the deleted files in which case the files are lost permanently. Also if you save a file over an existing file of the same name, then the old file is overwritten and cannot be recovered.
    General File Recovery
    If you stop using the drive it's possible to recover deleted files that have not been overwritten with recovery software such as Data Rescue II, File Salvage or TechTool Pro. Each of the preceding come on bootable CDs to enable usage without risk of writing more data to the hard drive.
    The longer the hard drive remains in use and data are written to it, the greater the risk your deleted files will be overwritten.
    Also visit The XLab FAQs and read the FAQ on Data Recovery.

  • Recover files deleted via terminal

    I used a terminal command and my dropbox, google drive folder and another documents were deleted from my computer. I dont know what the command means and dont know what to do. What i wanted to do whit this command was to resync a google drive folder because I had to reinstall google drive
    This is the command :
    find ~/ -maxdepth 1 -type d -iname '*google*drive*' 2> /dev/null -exec rm -Rf {} \;
    rm -Rf ~/Library/Application\ Support/Google/Drive
    I got it from this website http://www.knowitnot.com/2013/11/02/reset-google-drive-mac-os-x/
    Please help me i really need the info that i lost

    find ~/ -maxdepth 1 -type d -iname '*google*drive*' 2> /dev/null -exec rm -Rf {} \;
    rm -Rf ~/Library/Application\ Support/Google/Drive
    It is easier to start with the 2nd command.
    'rm' is remove, as in delete. the files in ~ (your home folder) -> Library (a hidden file so people do not go messing in it) -> Applications Support -> Google ->Drive (which is where I assume some Google Drive information is typically stored.
    The -f says remove the files without prompting.  The -R says recursive, so if the target folder (Drive) has any sub-folders, it will delete those as well, and keep walking down any additional sub-sub-sub-sub...folders until everything in "Drive" and under "Drive" is removed.
    So rm -Rf is a very dangerous command, especially if the target directory is something high enough up in the directory tree.  There have been people that have followed posts on the web that deleted their entire file system with just one 10 character rm command.
    The 'find' command will search the target folder and all sub-sub-sub...folders and using a huge array of selection options find files and allow other commands to operate on the found files.
    The target folder was your home directory (~ is the Unix shortcut for your home folder).
    The -maxdepth 1 say says stop at the current folder.  That is to say, do not look in any sub-folders.  A value of 2 would look in just the sub-folders under the target folder.  A value of 3 would go down another level, etc...  So -maxdepth 1 just looked for file in your home folder.
    The -type d said select folders (d for directory, aka a folder).  So it ignored anything that was not a folder.
    The -iname '*google*drive*' selected only folders that included "google" and "drive" in the name ignoring any upper/lower case differences.  So it was looking for your Google Drive folder in your home folder.
    The 2> /dev/null told the Terminal shell to send any error messages to the null device (basically hiding any error messages that would be issued).
    Now the fun part, as with the other rm command, the -exec rm -Rf {} \; deleted recursively all the files found by the 'find' command.  The -exec invokes the specified command (in this case rm -Rf) and substitutes the file name found for the {}, the \; is just to tell 'find' where the -exec command ends.
    So 'find' found your Google Drive folder in your home folder, then removed it and anything inside of it.
    Finally, the 'rm' command is final. There is no UnDo.  There is not Trash folder.  The file name is removed from the directory, the storage associated with the file is put on the file system free list, and the file is gone.  If another file needs storage, it will take that storage from the file system free list, and now the deleted file data is overwritten.  This is why a salvage recovery tool needs to be run as soon as possible after something like this happens to avoid stepping on the accidentally deleted files.  And even then it is often difficult to figure out if something on the free list is a file or just junk.
    The only comfort I can give you is that, you have joined a wide group of Unix uses that have done similar things, populated by users with a lot more command line experience than you, but they still typed the wrong thing at the wrong time and lost valuable data.  The lucky ones had a backup, or were able to find another copy, such as checking if the Google Drive online site keeps deleted files for a few weeks, just in case.

  • How can I recover files deleted in my macbook

    without notice I drawed one of my important folders to the trash can and then was empty. How can I recover?

         This might work for you! http://www.macintosh-data-recovery.com/mac-undelete-files.php?gclid=CJbSqcOKz6kC FecaQgodPQvzMA

  • Undo deleted photo, how to recover a deleted file in iPad mini

    how to undo deleted photo? how to recover a deleted file in iPad mini?

    Unfortunately you can't. Except if you made a back up of your iPad on iTunes, restore it with the last save.
    Hope I helped

  • How to recover files from a deleted partition?

    Unfortunately, my OSX was not booting and I deleted my partition. Through the Internet Recovery mode I reinstalled the original OSX Mountain Lion it came with. I then upgraded to Maverick. I know that deleting a partition practically means all files are lost. I heard that files can be recovered on a Windows when a partition is deleted. Is there any way I can recover files from a partition that was deleted just a day ago?

    Hi,
    Yes, it is possible to recover deleted partition or volume on Mac. Previously I was able to recover all my data lost due to accidental deletion of partition on my Mac PC by using recover Mac data software. This tool is really helpful, here you can download this tool.

  • Is there any software for macbook to recover a deleted file?

    Is there any software for macbook to recover a deleted file?

    Hope & prayer?
    Whatever it is you end up using, it is IMPERATIVE you stop using the Mac until the rescue is completed.The more the drive gets modified, the greater the chance that the storage area the deleted file used to occupy will get written over, thereby making rescue impossible.

  • Recovered my deleted CR2 files but now they wont open,,,, HELP

    Hi everyone.
    I recently had a major disaster, my external hard drive crashed losing some very very precious photos of clients.  I have had experts do a recovery on my laptop where they were originally downloaded too and recovered the CR2 files.
    Problem is now CS5 and bridge wont open them.  My IT guy has done a recovery process to recover the deleted files of my laptop hard drive... can this be a problem iwth CR2 files?
    Desperately needing help :-(

    Hi all....thanks for the reply
    These are links for my cr2 file...
    https://www.yousendit.com/dl?phi_action=app/orchestrateDownload&rurl=https%253A%252F%252Fw ww.yousendit.com%252Ftransfer.php%253Faction%253Dbatch_download%2526batch_id%253DT2dmV280W lR6NElsYzlVag&s=301019&cid=pm-03002124310600000000%253B301019&locale=en_UShttps://www.yousendit.com/dl?phi_action=app/orchestrateDownload&rurl=https%253A%252F%252Fw ww.yousendit.com%252Ftransfer.php%253Faction%253Dbatch_download%2526batch_id%253DT2dmV280W lR6NElsYzlVag&s=301019&cid=pm-03002124310600000000%253B301019&locale=en_US
    and
    https://www.yousendit.com/dl?phi_action=app/orchestrateDownload&rurl=https%253A%252F%252Fw ww.yousendit.com%252Ftransfer.php%253Faction%253Dbatch_download%2526batch_id%253DT2dmV295V nNRR2M5WThUQw&s=301019&cid=pm-03002124310600000000%253B301019&locale=en_US
    btw,
    Noel....my total size for the recovered files is 120GB...a lots of folders,my collections since 2009...and my photoshop is CS3....
    thanks in advanced guys..
    -pa-

  • How to recover a deleted numbers file in icloud

    How do I recover a deleted numbers file that was saved in icloud
    Can files be saved on Mac and I cloud at the same time

    Use your back up/Time Machine to look inside the user library > mobile Documents folder.

  • Does Any one can indicate me how to delete recovered files found on the trash can?

    I´ll appreciate very much your help indicating me the best way to delete recovered files found on the trash can.

    The Getinfo pane has several sections. Next to the top is "General". At the bottom of that section, under the row of colored dots is a checkbox,  [√] Locked (and not checked means not locked).

  • Recovering files time machine deleted

    Is there a way to recover files from a back up that time machine deleted? I was in the middle of recovering files then the computer just hanged so I had to force shutdown. When I booted up again, I can't find any of my documents in ALL of the time machine backups previously created.
    Please help. Thanks

    You might be able to use SubrosaSoft FileSalvage to recover the files. You can run it in demo mode first to see what files, if any, it will be able to recover from the disk. With the restricted privileges of the TM disk I'm not sure if it will work but worth a try.
    Sometimes it might be best to not force quit but let it run for what may seem a extraordinarily long time. Were you about to use any other application during that time? If it happens again run Activity Monitor to see what's taking up the computer's effort. It just might be chugging along and not actually hung. TM is CPU heavy.

Maybe you are looking for

  • ERROR IN INSTALATION OF R/3 4.7

    Hi Guru's I am trying to install 4.7 in my PC when i am installing the data base instance that the system is showing the error message and that will stops my installation how to resolve this problem and i am attaching the error log file for u r under

  • How do I reinstall firefox on iPhone 3GS

    I lost firefox during sync

  • TS2580 i have problem to republish my site

    Hi I have trying to republish my site using iweb ftp server but it does not working longer!? Help me please! Mizu

  • How do I get rid of a rest in my score?

    Hi, A couple of posts ago I asked how to make a grace note. Since getting response I successfully made a grace note attached to an eighth note. Unfortunately there is an eighth rest sitting in the background that I have no idea how to get rid of. (I

  • SAP BW Connectivity to EP 6.0 SP2

    Hi, We have installed the EP 6.0 SP2 for our Development and Production Servers. We have SAP BW 3.1 system. Now we want to connect these two systems for getting our BW Reports into Portal. In this Procesure, i wanted to confirm, For this connectivity