Can I delete files after TM backup? Please help!

I have about 100 GB of movies on my iMac and wanted to know if I can delete the movies off of my iMac after TM has successfully backed up my HD. This way I'll be able to free up some space on my iMac, and if I ever needed to get to a movie I could always restore it from TM. Will that work? Thanks!!!

I'm afraid the correct answer here is to buy another drive. You *could* use TM to recover historical data, but not a good idea. You *could* use a drive that you are depending on for backups for casual use, but also a bad idea. Part of the respect of the backup process, even though TM makes it easy to use, is investing in the right hardware for the job. In this case, that means getting yourself another drive or drive system for appropriate storage. Better yet, do you happen to have another computer that could be tasked as a file server? Not only can you use it as a repository for your movie files, but that machine could in turn serve the media back to other devices, such as Apple TVs, other laptops, or even play back the media w/o your laptop having to be involved in the process.

Similar Messages

  • Can't delete file after renaming due to Word file handle still present. Error staes document is still in use but it's really not. Worked fine in 2007 but not in 2010.

    I have some code associated with a Word Template. The template is opened, filled out and saved via a routing in vba. This all works fine in older 2007 version (which is version it was originally created in). Once this file is saved, the user can change the
    date in a text box and re-save document. The code saves using the new date for part of new file name and then deletes that older file from the server. It fails at the delete function because the newer version of word is not dropping the file handle from the
    first named file when user saves it to the new filename. In older version (2007) this handle was released as soon as file was saved to a different name. I can't seem to figure out how to release the old document filename so the old document file can be deleted.
    I hope I explained this well enough.
    Here's the code that woeked in version 2007 but fails in version 2010.
    Option Explicit
    Dim CAPEX01 As MSForms.ComboBox
    Dim CAPEX02 As MSForms.ComboBox
    Dim LocalPath As String
    Dim NetPath As String
    Dim OldPath As String
    Dim OldPathNet As String
    Dim DocName01 As String
    Dim DocName02 As String
    Dim DocName03 As String
    Dim DocName04 As String
    Dim DocName As String
    Dim DocNameold As String
    Dim TestDocName As String
    Dim filesys
    Dim newfolder
    Sub AutoOpen()
    ActiveDocument.ActiveWindow.View.Type = wdPrintView
    TestDocName = ActiveDocument.TextBox2
    OldPathNet = "\\yourPath\" & TestDocName & "\"
    End Sub
    Sub AutoNew()
    TestDocName = ActiveDocument.TextBox2
    OldPathNet = "\\yourPath\" & TestDocName & "\"
     ComboBox1.Locked = False
     ComboBox1.Enabled = True
     FillList1
     FillList2
     End Sub
    Sub DeleteOldDoc()
    OldPathNet = "\\yourPath\" & TestDocName ' & "\"
    DocNameold = OldPathNet & TestDocName & "-" & DocName02 & "-" & DocName03 & "-" & DocName04 & ".doc"
        If Not TestDocName = DocName01 Then
            Set filesys = CreateObject("Scripting.FileSystemObject")
        If filesys.FileExists(DocNameold) Then
            filesys.DeleteFile (DocNameold), True      
     'I get file permission error here
        End If
        End If
    If DocName01 <> "" Then
    If Not TestDocName = DocName01 Then
    If Not TestDocName = "" Then
        MsgBox "Project Proposal Has Been Moved From Year " & TestDocName & " To " & DocName01 & ""
    End If
    End If
    End If
    TestDocName = DocName01
    End Sub
    '''''''Document path functions''''''
    Sub chkpath()
    Set filesys = CreateObject("Scripting.FileSystemObject")
    If Not filesys.FolderExists("\\yourPath\") Then
       newfolder = filesys.CreateFolder("\\yourPath\")
    End If
    If Not filesys.FolderExists("\\yourPath\" & DocName01 & "\") Then
        newfolder = filesys.CreateFolder("\\yourPath\" & DocName01 & "\")
    End If
    End Sub
    ''''''Save Function''''''
    Private Sub CommandButton1_Click()
    DocName01 = ActiveDocument.TextBox2
    DocName02 = ActiveDocument.TextBox4
    DocName03 = ActiveDocument.TextBox1
    DocName04 = ActiveDocument.ComboBox1.Value
    chkpath
    NetPath = "\\yourPath\" & DocName01 & "\"
    DocName = NetPath & DocName01 & "-" & DocName02 & "-" & DocName03 & "-" & DocName04
    ActiveDocument.SaveAs2 FileName:=DocName, FileFormat:=wdFormatDocument
     ComboBox1.Locked = True
     ComboBox1.Enabled = False
     ComboBox2.Locked = True
     ComboBox2.Enabled = False
     TextBox1.Locked = True
     TextBox1.Enabled = False
     TextBox3.Locked = True
     TextBox3.Enabled = False
     TextBox4.Locked = True
     TextBox4.Enabled = False
     DeleteOldDoc
    End Sub
    Sub FillList1()
    Set CAPEX02 = ActiveDocument.ComboBox2
      With CAPEX02
          .AddItem "CASTING", 0
          .AddItem "HOT ROLLING", 1
          .AddItem "COLD ROLLING", 2
          .AddItem "FINISHING", 3
          .AddItem "PLANT GENERAL", 4
          .AddItem "MOBILE EQUIPMENT", 5
      End With
    End Sub
     Sub FillList2()
     Set CAPEX01 = ActiveDocument.ComboBox1
      With CAPEX01
          .AddItem "A Name", 0
          .AddItem "Another Name", 1
      End With
    End Sub
    Private Sub CommandButton2_Click()
        UserForm1.Show
    End Sub

    mogulman52 and Don,
    I went back and looked at my code and had already updated it to SaveAs in the new docx format. It still holds the lock handle in place until Word closes, unlike earlier versions which released the lock handle when you did a SaveAs.
    As a note, all my Word and Excel macro-enabled (dotm & xltm) templates are read only and are never filled in, prompting the user for a file name on any close event or if they run the code gets auto-named. I do the SaveAs and concatenate the file name
    from data on the document (or sheet) that has been filled in. During the SaveAs the docx gets saved to a network folder and also on a local folder. The lock gets renamed to the filename and remains until Word is closed.
    So my code still fails at the point noted below while trying to delete an old filename version after the file has been saved as a new filename in a new folder. So....
    The code is looking in the last folder where the docx file was saved for the older filename so it can be deleted. The newest docx version has already been saved in a different folder and has a new lock handle of its own. That lock is not my problem, it's
    the older file lock which really exists in the same folder as the first filename that the docx was saved to. It does not release that lock until I exit Word. My work around has been to instruct all users to manually delete the older version file.
    The other odd thing is this only happens when I run it from code, if you manually go through these steps with the SaveAs menu drop-downs in Word it will release the lock handle???
    Hope this isn't to confusing and thanks for all your suggestions and help.
    Sub DeleteOldDoc()
    OldPathNet = "\\yourPath\" & TestDocName ' & "\"
    DocNameold = OldPathNet & TestDocName & "-" & DocName02 & "-" & DocName03 & "-" & DocName04 & ".doc"
    If Not TestDocName = DocName01 Then
    Set filesys = CreateObject("Scripting.FileSystemObject")
    If filesys.FileExists(DocNameold) Then
    filesys.DeleteFile (DocNameold), True 'I get file permission error here- lock handle is still present from last SaveAs command in last folder where previous version of file was saved.
    End If
    End If
    If DocName01 <> "" Then
    If Not TestDocName = DocName01 Then
    If Not TestDocName = "" Then
    MsgBox "Project Proposal Has Been Moved From Year " & TestDocName & " To " & DocName01 & ""
    End If
    End If
    End If
    TestDocName = DocName01
    End Sub
    Glenn

  • RECOVERING DELETED FILES... PLEASE HELP!

    Please help me...is there ANY way to recover a deleted file that was deleted FROM the trash can? I put the file in the trash can because I thought it was copied then I emptied it out.
    IS THERE ANY WAY I CAN GET IT BACK? IT IS AN EMERGENCY
    Macbook   Mac OS X (10.4.9)  

    Basics of File Recovery
    If you empty the Trash the files are gone. Recovery is possible but you must not allow any additional writes to the hard drive - shut it down. When you delete files you erase only the directory entries, not the files themselves. However, the space occupied by the files has been returned to the system as available for storage. 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.
    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.

  • HOW CAN I DELETE GOPHOTO.IT INSTALLER? PLEASE HELP ME

    i don't know how can i delete this program and i need to solve this problem for work. so i'll be really grateful if someone of you can help me.
    thank you in advance.

    For Safari : it's usually just an extension found in Safari - Preferences - Extensions.
    Firefox is slightly more involved : see Adware Removal Guide : GoPhoto.it
    It might not have come on its own : so you should check where you got it from.

  • Can't delete theweathernetwork app!! please help

    I am unable to delete theweathernetwork app from my BOLD 9000 phone )S 5.0.
    My cell provider says it is a blackberry issue and won't help me.
    When I press delete, the phone give me the option to confirm the delete, but the screen freezes and I can't actually delete the app.
    Very frustrating.
    Can anybody help?

    If you restart itunes, can you delete it?

  • HT1339 My nano won't restore, it says  it can't because "files are being used"  Please help me get the "chipmunk's and Beiber" off my ipod!!!

    I am trying to restore my nano to get my kids' chipmunk and beiber music off and it replys that it cant because files are being used.....what do i need to do???

    First and foremost, just say no to Beiber
    First, close all open apps on your computer and restart your computer. Open only iTunes when it restarts.
    Then, I would reset your iPod, probably not needed but I would do it  any way. Hold the sleep/wake button and the volume down button until the Apple logo appears. Wait for it to completely start  up to where it is ready to use.
    Now try and restore. If the iPod was synced with your own computer to put the music on, you can use it to remove it. Usually that is preferred instead of restoring.

  • Can I delete files on Macbook after using TM?

    I just used TM for first time. I need to free up HD space on Macbook before I run out. Do I need to move files to external or can I delete them after using TM? Do not want to loose the data that I have.

    Apple says that the Time Machine volume can share space with other files but recommends that Time Machine have its own volume. If you put the files on the same volume as Time Machine you could not use Time Machine to back them up. Also, 160GB is on the smallish side for a Time Machine volume so taking up space for extra files will mean that you will run out of space for backups more quickly.
    External drives can be bought for less than what Leopard costs and extra storage is always a worthwhile investment.

  • I can´t delete files in trash. It stops after a short time undone. What can I do?

    I can´t delete files in trash . It stops after a short time undone.
    What can I do? There are 52 files in trash, but if I click the button "sure empty" it shows 11.313 files to delete .
    I would be very greatful for your help!

    Stronger medicine may be needed, but try this first
    Force the Trash to empty using the Option key
    This technique uses a hidden feature of Mac OS X to force the Trash to empty. Perform the following steps in the order specified:
    Press and hold the mouse button on the Trash icon in the Dock. The context menu for Trash will display.
    Press and hold the Option key or the Shift-Option keyboard combination,
    Select Empty Trash from the context menu for Trash.
    Release the keys pressed and held in step 2.
    http://www.thexlab.com/faqs/trash.html#Anchor-Files-46919
    You are posting in the iMac PPC forum, but it looks like you have an Intel Mac. Get Trash It if you have an Intel.
    http://www.macupdate.com/app/mac/8214/trash-it!

  • I download a file in the torrent site which is MP4 but unfortunately i tried to delete it but i can not. but all the files that i have is easily to delete only MP4 files i can't delete in the download foldeer please try to help dont know what to do please

    i download a file in the torrent site which is MP4 but unfortunately i tried to delete it but i can not. but all the files that i have is easily to delete only MP4 files i can't delete in the download foldeer please try to help dont know what to do please

    Well you can sync your iPod/iPhone to yur computer or laptop then take the photos off of your iPod like taking photos of of a SD card (from a normal camera) or off of a USB..! Good Luck. plz tick this saying This solved my question if it helps you.

  • I can't back up my iPhone4.  When was I syncing, My computer hang. I restart computer. Itune told me there is an error, delete the back up file and try again. But there are no back up file to delete in preference-device. Please help!

    I can't back up my iPhone4.  When was I syncing, My computer hang. I restart computer. Itune told me there is an error, delete the back up file and try again. But there are no back up file to delete in preference-device. Please help!

    Thank you for answering my question. If I reinstall itune, is it mean that I need to install music, apps, video...everything in itune again? also intall everything in my iphone again?

  • Ok, so it appears that my photo gallery and video gallery decided to delete themselves? Is there a trash can or deleted file where I can recover them? Please help

    Ok, it seems that my photo gallery and video gallery decided to
    delete themselves. Is there a way to recover them perhaps from
    a trash can or deleted file? I have a Android

    appreciate your reply
    1. i do not see a trashcan iconwhen i open the photos.
    2. the photos are NOT in the 'camera roll' they are in a folder called 'iPad photos' (which is in the 'albums' section of the iPad)
    3. i have re-set the iPad numerous times in order to try and resolve this. each time it is the same - no trashcan.
    4. i have no method of 'moving' the photos to another folder - only the option to 'add to' a 'new folder'. since thsi won't delete the original photos, there is little point in trying this.
    5. i'm guessing your next suggestion will be to completely back up and re-set my iPad? is that really what i should be doing here? surely... surely.... please, this should be a simple - select>trashcan>delete process and not something i have to spend half my working day trying to resolve! seriously, seriosly, unimpressed with Apple over this issue. it's about time that Apple gave the power back to the user on devices like these. i can understand now why people jailbreak their iPads... there rant over - but please consider my feelings over this issue.

  • I can't login, keep geting "Your  Startup Disk is Full" and asking me to delete file. if I cant login how can I delete files? Please help

    I Keep getting "your startup disk is full" ..... "You need to make more space available on your startup disk by deleting file..."  If I can't have an acess, how can I delete files. Please help..

    That means the hard drive of your computer is full, and you don't have enough free space on your computer, to do what you are trying to do. 
    You need to clear up space on your computer. 
    If you hard drive is full, check the following places to ensure they are not holding unwanted data.
    - your trash can in the dock
    - if you use iPhoto, your trash in iPhoto - launch iPhoto, and select trash in the left hand column.  iPhoto has it's own trash, and is often overlooked
    - your download folder - finder / home user / downloads - every time you download something, it stores it here. This is often overlooked as well
    - do you have more than one user on the computer?  If you do, ensure they are needed.  If not, delete them, and the contents of their home folders
    If you hard drive is very full, you may want to consider the following:
    - putting in a newer larger hard drive - (call you local apple store for prices on this)
    - deleting data off your computer
    - moving data to an external drive - (iPhoto Libraries, iTunes Libraries or iMovie events, as they are the biggest space hogs)

  • HT201250 I only want to keep the latest backup version of my files.  Can I delete all the earlier backups & if so, how?

    I only want to keep the latestTime Machine backup version of my files.  Can I delete all the earlier backups to save my external drive space, & if so, how?

    Jamarac wrote:
    I only want to keep the latestTime Machine backup version of my files.  Can I delete all the earlier backups to save my external drive space, & if so, how?
    Doesn't sound like much of a backup plan, but why not just wipe your backup drive and make a fresh backup of your current system? Be easier and safer,
    Cheers
    Pete

  • HT4873 How i can recover deleted files from icloud,,I had a backup copy on iCloud for whatsapp application and I lost it,,I need bring it back what I have to do

    How i can recover deleted files from icloud,,I had a backup copy on iCloud for whatsapp application and I lost it,,I need bring it back what I have to do

    You can't download pictures from iCloud by logging into icloud.com.  If you deleted pictures from camera roll AND photo stream, the only possibility is preforming a restore from an iCloud backup, assuming the backup has the pictures in it.  (Many users have been unable to restore and get back their pictures.)
    If the restore doesn't have all the pictures, then they are gone.
    In the future, use photo stream to sync photos from an iPhone to a computer, then copy the photos on the computer from the photo stream album into a permanent album.  Photo stream pics stay there only for 30 days, and only up to 1000 photos are stored.  Don't use photo stream as a storage medium, it's only for copying photos from one device to another.  Always copy (either via USB cable or photo stream) to a computer and then move to an album.

  • Failed to delete file after processing FTP

    Failed to delete file after processing. The FTP server returned the following error message: 'com.sap.ai i.adapter.file.ftp.FTPEx: 550 Unexpected reply code *.txt: The process cannot access the file because it is being used by another process. '. For details, contact your FTP server vendor.
    I got this error many times for the same interface. Not sure what is the reason for this.
    Searched on internet go comments that this is because of FTP version!
    Please help

    It is the "Msecs to Wait Before Modification Check" in the Sender Adapter that ensures this. It works like this: PI starts processing, finds a file, then waits the number of miliseconds specified and checks the file again to see if it has changed over the waiting period. If so, then it waits again to make sure the file is written completely. Only if no changes took place over the waiting period, it starts processing the file.
    And the fact that your file was successfully processed at retry only confirms that it might have been still written to by the sender system. You can try comparing file's creation timestamp (in OS level) with its processing start time in PI - this could prove me right.
    Edited by: Grzegorz Glowacki on Jan 13, 2012 2:15 PM

Maybe you are looking for

  • HP LASER JET PRINTER CM1415 FNW NOT PRINTING FAX

     Love this printer. Have it about 2 years. Had no issues until now. Faxes are received to memory but don't print.Can print fax from memory. Also can print from othewr applications,so printer is not the ussue. Why won't the faX  print on  receipt

  • Payment Run is cancelled

    Hi Gurus I am trying to do APP Run , after entering parameters , the proposal is created and now when I am trying to do the Payment Run it is giving message as payment run is can celled and the reason given as document number range is missing for tha

  • Warning on activation of iPad

    I bought my wife an iPad Mini for Christmas. Since we are not going to be home at Christmas time when I give it to her, I activated it on her computer and loaded all the apps from her first generation iPad. Unfortunately, Apple sent a congratulatory

  • Custom component class is not detecting url parameter

    I have a hcsp page, on which i have a link something like this : "<$HttpCgiPath$>?IdcService=CUSTOM_SERVICE&var1=value1" m appending one more parameter in this url through java script. so one is the var1 which is directly here in the url and one m ap

  • How To Run MacBook Pro using ac power?

    macbook pro late 2011 13 inch is built in battery, how we want to use it using AC power adapter? we all know that battery cannot overcharged.