Are Renamed Files or Renamed Folders backed up again?

Does Time Machine perform any sort of Content oriented backups to the TM volume? I seem to remember reading somewhere that it did, but only at the file level. In other words, is the entire file or group of files backed up again if:
1. The file is renamed?
2. An enclosing parent folder is renamed?
3. File attributes have changed? If so, is the whole file backed up again?
4. Only a resource fork is changed? If so, is the whole file backed up again?
5. Duplicate files with different names or different locations?
If there is no commonality processing to avoid backing up data more than once like DataDomain or EMC Avamar, might there be in the future?

JeffCMKRNL wrote:
Does Time Machine perform any sort of Content oriented backups to the TM volume? I seem to remember reading somewhere that it did, but only at the file level. In other words, is the entire file or group of files backed up again if:
1. The file is renamed?
yes.
2. An enclosing parent folder is renamed?
yes
3. File attributes have changed? If so, is the whole file backed up again?
yes
4. Only a resource fork is changed? If so, is the whole file backed up again?
yes
5. Duplicate files with different names or different locations?
yes
If there is no commonality processing to avoid backing up data more than once like DataDomain or EMC Avamar, might there be in the future?
none of us here work for apple so we wouldn't have any idea but I extremely doubt it.

Similar Messages

  • Droplet to Rename Folders and Files

    I am an AS newbie and I need some help. Our accounting software creates a folder structure on our server when a job is created with a 6 digit job number. Enclosed in this folder is a set of sub-folders which are generated with a generic name: 0000_Art, 0000_Final, 0000_Fonts etc. It also places a generic rtf file named 0000_Readme. When work begins on a job we currently have to replace the "0000" with the last four digits of the job number: "140662" = "0662_Art" etc.
    I found a script to do this with some manual intervention but wanted to take this one step further by creating a droplet and making it drag and drop. This droplet works, but the problem comes in that it still wants you to choose the target folder from a dialog and I would like to just auto process the dropped folder and it's contents. Also, is there a way to tell AS to use characters 3-6 of the dropped folder's name to replace any instances of "0000" in sub-folder or document names enclosed? Is there any uneccessary code which can be stripped out?
    Here is the script as it stands now:
    on open of finderObjects
    set the source_folder to (choose folder with prompt "Folder containing items to edit:") as Unicode text
    display dialog "Search and replace in:" buttons {"File Names", "Folder Names", "Both"} default button 3
    set the search_parameter to the button returned of the result
    repeat
    display dialog "Enter text to find in the item names:" default answer "0000" buttons {"Cancel", "OK"} default button 2
    set the search_string to the text returned of the result
    if the search_string is not "" then exit repeat
    end repeat
    repeat
    display dialog "Enter replacement text:" default answer "" buttons {"Cancel", "OK"} default button 2
    set the replacement_string to the text returned of the result
    if the replacement_string contains ":" then
    beep
    display dialog "A file or folder name cannot contain a colon (:)." buttons {"Cancel", "OK"} default button 2
    else if the replacement_string contains "/" then
    beep
    display dialog "A file or folder name cannot contain a forward slash (/)." buttons {"Cancel", "OK"} default button 2
    else
    exit repeat
    end if
    end repeat
    display dialog "Replace “" & the search_string & "” with “" & the replacement_string & "” in every item name?" buttons {"Cancel", "OK"} default button 2
    tell application "Finder"
    -- Get a Finder reference to the relvant items.
    if (search_parameter is "Folder Names") then
    set item_reference to a reference to (folders of entire contents of folder source_folder whose name contains search_string)
    else if (search_parameter is "File Names") then
    set item_reference to a reference to (files of entire contents of folder source_folder whose name contains search_string)
    else
    set item_reference to a reference to (items of entire contents of folder source_folder whose name contains search_string)
    end if
    -- Get a list of aliases to the items.
    -- (Individual Finder references might fail when renaming items within renamed folders.)
    try
    set item_list to item_reference as alias list
    on error
    set item_list to item_reference as alias as list
    end try
    if item_list is not {} then
    -- If there are any relevant items, get their names.
    set current_names to name of item_reference
    -- Doctor each name...
    repeat with i from 1 to (count current_names)
    set astid to AppleScript's text item delimiters
    set AppleScript's text item delimiters to search_string
    set text_items to text items of (item i of current_names)
    set AppleScript's text item delimiters to replacement_string
    set newitemname to text_items as Unicode text
    set AppleScript's text item delimiters to astid
    -- ... and rename the associated item.
    my setitemname(item i of item_list, newitemname)
    end repeat
    end if
    end tell
    end open
    beep 2
    on setitem_name(thisitem, newitemname)
    tell application "Finder"
    --activate
    set the parent_container to (the container of this_item)
    if not (exists item newitemname of the parent_container) then
    try
    set the name of this_item to newitemname
    on error the error_message number the error_number
    if the error_number is -59 then
    set the error_message to "This name contains improper characters, such as a colon (:)."
    else --the suggested name is too long
    --set the error_message to error_message -- "The name is more than 31 characters long."
    end if
    --beep
    set newitemname to my getnew_name(errormessage, newitemname)
    if (newitemname is 0) then return 0
    my setitem_name(thisitem, newitemname)
    end try
    else --the name already exists
    --beep
    set newitemname to my getnewname("This name is already taken, please rename.", newitemname)
    if (newitemname is 0) then return 0
    my setitem_name(thisitem, newitemname)
    end if
    end tell
    end setitemname
    on getnewname(msg, default_answer)
    tell application (path to frontmost application as Unicode text)
    set {text returned:newitemname, button returned:button_pressed} to (display dialog msg default answer default_answer buttons {"Cancel", "Skip", "OK"} default button 3)
    if (button_pressed is "OK") then
    return newitemname
    else if (button_pressed is "Skip") then
    return 0
    else
    error number -128 -- only necessary on non-English systems.
    end if
    end tell
    end getnewname
    Various Mixed Macs   Mac OS X (10.4.3)  
    Various Mixed Macs   Mac OS X (10.4.3)  

    Hi lunarlandr and welcome to Apple Discussions!
    Without going through the script in detail, there's a lot that can be stripped out, and a few goodies that can be added.
    Droplets work best when iterating through lists (even one-item lists) of Finder items. As a brief example:
    on open (these_objects)
    repeat with each_object in these_objects
    --do something with each object in turn
    end repeat
    end open
    You need to remove the line beginning "choose folder" and let each_object become your source folder.
    The code below is rough and may need some amendment, but it should answer most of your questions. Test it and see.
    --begin script
    on run
    display dialog "I'm a droplet! Drop things on me!" buttons {"OK"} default button 1 with icon note
    --although you could incorporate a choose folder here
    end run
    on open (these_objects) -- a list of aliases
    repeat with each_object in these_objects
    set item_info to info for each_item
    set folder_contents to (list folder item_info)
    if kind of item_info is "Folder" and folder_contents contains "0000_Readme" then -- only process job folders
    set job_number to text 3 thru 6 of name of item_info
    process (eachobject,jobnumber)
    else --not a job folder
    display dialog "I only work with proper job folders." buttons {"OK"} with icon note giving up after 3 -- move on to next item in list
    end if
    end open
    on process (topfolder,jobnumber)
    tell application "Finder"
    set folder_contents to every item of top_folder
    repeat with each_item in folder_contents
    set generic_name to name of each_item
    if generic_name begins with "0000_" then
    set name of each_item to job_number & text 5 thru -1 of generic_name --everything from the underscore to the end
    end if
    end repeat
    end tell
    end process
    --end script
    The droplet will process multiple folders with different job numbers, without any user interaction. The name of the internal files and folders is derived from the name of the dropped folder.
    Hope it helps,
    (Although I don't see why the accounting software shouldn't do all of this for you...)
    H

  • Can't add folders nor rename folders or files.

    I'm setting up an A1342 MacBook and now I'm unable to add any folders nor to rename folders or files. Where do I go to unlock these? Looked all around OS Preferences, & don't see what I need to do.

    What version of the Mac operating system is running on your MacBook? (Go to the Apple menu, select About this Mac and look for the version number.)
    If you select a folder and then Get Info for it (command-i on your keyboard or File menu > Get Info) are you able to change the name there? What does it say for Sharing & Permissions?
    Best of luck.

  • Can`t rename folders or files in nfs windows 2012R2

    I can not rename
    folders or files that are in a nfs
    unit. When I try to rename I get the
    error "Invalid device", this only
    happens in windows 2012r2 or
    2012 in windows 2008r2 works with
    the same nfs unit.
    In
    the event viewer no errors.
    you know it
    is happening?

    Hi,
    Based on my research, the issue is a bug in Windows Server 2012 and 2012 R2. It needs some time to figure out the proper fixes, so please wait for a future patch. If there is a solution or workaround, I will post it in this thread. 
    Thank you for your understanding and support.
    Best Regards,
    Mandy 
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • I have set up folders to file my emails on iCloud but notice that some of the emails are missing. Can anyone tell me where they are and how to get them back.

    I have set up folders on iCloud to file my mail but notice that some of the emails are missing when I've transferred them. Can anyone tell me where they are and how to get them back please?

    This can be a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • Upon creating a new catalog, all files are renamed with a postfix: "-2"?

    My catalog was corrupted, and i decided to create a new catalog from cratch.
    To my big surprise alle falenames was renamed from IMG_xxxx.cr2 to IMG_xxxx-2.cr2. Why?
    This is i problem sice i still god the old catalog, and try to recover some of the old editorial settings, but since alle files are renamed the are no longer visible in the old catalog. just about 15.000 files are renamed!

    Lightroom only adds suffixes when it finds files of the same name in a location it's moving or copying too.
    What option did you use on Import? Copy/Add/Move?

  • Problem after I renamed folders

    OK, so I went through my iphoto library file folders and renamed the folders from "Roll X" to organize my photos better. I know, stupid of me, since they're already organized inside iphoto, but it seemed like a good idea to me. Now, I when I try to edit a photo inside iphoto, I get a gray screen instead with an Exclamation point. However, this didn't happen to all my photos... just certain ones. Does anyone know why this would've happened, and how I can resolve it?

    BeachBumDear
    Why it happened? because iPhoto tracks the pics via their path, or address on the HD. So it know the pic is in iPhoto Library Folder / Originals / Roll 123. But that address no longer exists because you changed it to iPhoto Library Folder / Originals / Fred's Party. So that's why it happened.
    Resolve it?
    Three possibilities: Return things to exactly the way they were (which you may be able to do by referring to the /Data folder), or restore from an undamaged back up or if you cannot do either of those, you'll need to create and populate a new library.
    To create and populate a new library:
    Note this will give you a working library with the same Rolls and pictures as before, however, you will lose your albums, keywords, modified versions, books, calendars etc.
    Move the iPhoto Library to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library on your desktop and find the Originals folder. From the Originals folder drag the individual Roll Folders to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption.
    Some FYI: Rolls in the iPhoto Window (View -> Film Rolls) correspond exactly with the Roll Folders in the Originals Folder in the iPhoto Library Folder. You can move photos between Rolls, you can rename rolls, edit them, create them, as long as you do it via the iPhoto Window. Check out the Info Pane (wee 'i', lower left) the name and date fields are editable. *Edit a Roll Name using the Info Pane, the Roll Folder in iPhoto Library Folder/Originals will also have the new name.*
    Remember : *It is strongly advised that you do not move, change or in anyway alter things in the iPhoto Library Folder as this can cause the application to fail and even lead to data loss* There is never a need for you to enter the iPhoto Library Folder - there are no user service able parts there.
    There are many, many ways to access your files in iPhoto:
    For 10.5 users: You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Apple-Click for selecting multiple pics.
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. If you're using Gmail you can use THIS
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    Or, if you want to access the files with iPhoto not running, then create a Media Browser using Automator (takes about 10 seconds) or use THIS
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    Regards
    TD

  • Can't rename folders on Snow Leopard Server

    I have 10.6.8 Snow Leopard Server running on a new Mac Mini server. Attached I have a Pegasus Raid storing all my files. I have a sharepoint set up for every project we work on but a couple act strangely. Users can create and delete folders but can not rename them once created. In order to rename they must drag the folder onto the desktop, rename and then replace the folder on the server. All permissions are set up identical to the other sharepoints which work fine. I have had a couple so-called "experts" look at the permissions in both the terminal and Server Admin. Everyone seems stumped. Any ideas?

    Thanks for the input but I finally soved the problem. Here is what I found...
    Although I had given users/group the ALLOW/FULL CONTROL premission with a sharepoint, I discovered that in Server Admin if you double-click on the User or Group name under the ACL permissions that a drop down box appears. This box allows you to fine tune the ACL but it appears that by default all of the boxes are not checked even though I granted the user Full Control. After checking all of the boxes I was able to create and rename folders in my share as expected.
    This also had an similar effect if I denied Full Control. Some of the boxes remained unchecked and it left holes in my system where denied users could still access some files. Again by checking all boxes these holes were closed.
    Does anyone know how to change the default so that all boxes are checked when assigning the Full Control permission?

  • Can't rename folders in Launchpad

    Cant rename folders in Launchpad I i have tried double clicking and waiting for them to wobble. Nothing.

    From another discussion: https://discussions.apple.com/thread/3189625?start=15&tstart=0
    etresoft wrote:
    First try to create a new account and see if you have the same problem there. If not, it is likely just a preferences problem. First try quitting the Dock from Activity Monitor. It should start right back up again. If that doesn't fix it, go into ~/Library/Application Support/Dock and delete all the DB files. You should probably quit the Dock again or, even better, log out and back in.
    You will have to type ⌘ G in the Finder and type "~/Library/Application Support/Dock" to get to that folder. Bummer Apple, it sure didn't take long to have to unhide the Library foolder, eh?
    This has worked for others who had the same problem.

  • Ability to rename folders in Launchpad in Mountain Lion Seems to be broken. Is there a fix?

    Ability to rename folders in Launchpad in Mountain Lion Seems to be broken. Is there a fix?

    YouWinSomeYouLoseSome wrote:
    you still cannot rename folders.
    I can... you cannot. I'm not sure why. It will not work on an app icon.
    Are you sure you're doing this on a Folder?
    Perhaps it is a function of Finder. You can try deleting Finder prefs to default.
    Go to your Finder "Go" menu hold the option key and choose Library. Then go to Preferences folder and trash these files:
    com.apple.finder.plist
    com.apple.sidebarlists.plist
    Then, restart, or log out and in again.
    (You will have to reset a few finder prefs the way you like them.) 

  • Rename Folders in Launchpad in Lion

    HI - I've seen various comments on how to do this. I've tried to go into the folder, double click on the name (normally untitled) but it won't allow me to rename.
    Anyone know how you rename folders in launchpad ?

    First try to create a new account and see if you have the same problem there. If not, it is likely just a preferences problem. First try quitting the Dock from Activity Monitor. It should start right back up again. If that doesn't fix it, go into ~/Library/Application Support/Dock and delete all the DB files. You should probably quit the Dock again or, even better, log out and back in.
    You will have to type ⌘ G in the Finder and type "~/Library/Application Support/Dock" to get to that folder. Bummer Apple, it sure didn't take long to have to unhide the Library foolder, eh?

  • Are renamed iPhoto libraries seen as new packages in Time Machine?

    I have been using Time Machine for a few months with no problems, although sometimes only backing up once every few days after having done some work. This morning I plugged in TM, let it "Prepare", (which normally takes a bit longer after not backing up for a few days), and then a message popped up saying the backup was too large for the HDD and had therefore failed. Unfortunately, this also meant that TM deleted ALL my previous backups except for the last one - without warning despite having the appropriate option ticked in Options. (Extremely annoying, but not a complete disaster, as I do not delete files from my internal HDD hoping they'll be on my TM backup - I know it doesn't work like that).
    There was 15GB left on the HDD and the additional files/work added in the previous day can't have exceeded 2GB, so I didn't understand why TM was asking for 47GB. Searches on Google and these discussions led me to believe that lots of people had experienced similar problems, but nothing that solved my problem.
    Then I suddenly remembered that I had renamed two iPhoto Libraries (with a combined weight of about 38GB). Adding them to the list of folders to ignore made TM start working again. Then I renamed them back to the original name and backed-up again.
    So, was TM not clever enough to tell that my renamed iPhoto library was the same instance as a previously backed-up library? Is there any way to rename an iPhoto library and avoid this issue again? Is this the same with all renamed files or just with package files? Could this be the cause of other peoples' problems?

    Tim Feist wrote:
    So, if I rename a single large file (i.e. not a folder), will it also treat that as having been deleted and back up a completely new instance of it or is it intelligent enough to simply redirect the hard link to the newly-named file?
    No, it's treated as one item deleted, another created. Doesn't matter whether it's a single file, folder with a zillion sub-folders, package, application, or whatever.
    And again, it's true whether you're using TM, which uses the File System Event log to determine what's changed, or one of the alternatives like CarbonCopyCloner, SuperDuper, etc., that look at every file and folder on your system to determine what's changed.
    If things aren't in the same place, they may be copies of something that is or was elsewhere, but they really aren't the same.
    I have experimented with moving a file to another folder and it backs it up all over again, despite a Mac Genius telling me it wouldn't!!
    They're not perfect, either.

  • Lightroom doesn't allow me to rename folders containing pictures and videos.

    I'm using lightroom version 5.7 on a Windows 8 machine. in the library page Lightroom won't allow me to rename folders that contain video files. Works fine on folders that only contain pictures.
    any thoughts on how i solve this?

    Edward Chatlos wrote:
    IMHO you are using the wrong tool/program for renaming folders on your drive. You should use a File Manager program for that. Something like Windows File Explorer. LR is not a File Manager although it does allow you to do certain tasks.
    You should set up your image and video folder structure/system long before you import images and videos into LR's Catalog Database.
    It may be your humble opinion but is certainly not even close to being on the button. Why do you think it is allowed in Lightroom along with the creation and deletion of folders and files off the HD with Lightroom. Maybe try offering an answer.
    OP, do these folders that won't rename also contain images as well as videos? Where are the folders located?? I can't see how Lightroom could cause this as it calls the OS to do this but sometimes weird things happen.
    It may pay to remove the Lightroom Preference file as well. A corruption there can result unexpected problems: https://helpx.adobe.com/lightroom/kb/preference-file-locations-lightroom-41.html

  • Are operating files only within Windows (C:) or are Word and Excel files ok in Documents and (C:) folders in 8.1?

    A Microsoft tech said "oh-oh" when he saw Word and Excel files, and I think other files, in Windows (C:). He said only operating files should be in that folder or a user might delete an operating file by mistake. I have Word and Excel files in
    both (C:) and Documents folders. There is some overlap but there are different files in each. When I open a Word file it defaults to (C:) not Documents. Sometimes default location is SkyDrive. So unpredictability is my experience. The questions are what is
    correct default and how to make it so.
    Microsoft store in San Diego transferred files from old computer to new one and this default is how the computer was set up.

    Hi, Tyro.
    What a mess. Usually system files in the Windows folder are protected from being deleted by users, but not all of them.
    Here are some ideas:
    Go back to the Microsoft store and tell them to fix it. They caused it, it was their mistake, they are responsible to fix it.
    If that is not possible because they are too far away... find another Microsoft Store if possible and have them fix it.
    Last resort: If it was me, I'd just back up all the files that I care about onto my SkyDrive (now OneDrive) account or a reliable thumb drive. Then do a factory re-image. Maybe back up the files and make the MS store do it. If I had purchased Office
    2013 (it sounds like you have Office 2013), then I would have them reinstall that as well.
    Keep the store involved because it is their fault.
    At least call the MS store in San Diego and ask them what they suggest. Put them on the spot. They are the ones that screwed up and are responsible for the copying process.
    Good luck!
    Best wishes, Davin Mickelson

  • Can't delete or rename folders when I FTP

    Hi
    Hope someone can help me with this!!
    When I connect to a webserver using FTP with dreamweaver, it
    won't let me delete or rename any folders.
    It's nothing to do with the persmissions becasue the user has
    full permissions and can delete or rename when I FTP using a
    different client. Any ideas?? Is there a setting that I am
    missing??
    Thanks in advace for any help
    Cheer

    Do you run a mac?
    I had this problem at the last company that I worked for. I
    was on a Mac
    then; not sure if that had anything to do with the problem.
    I could sometimes connect with Dreamweaver but I could always
    connect with
    another ftp client. At one point, when the problems started,
    I used
    Dreamweaver to rename folders on the server. Instead of
    creating them on my
    own system, I created files and renamed folder directly on
    the server
    through DW. After that, I had problems. At one point, all the
    files got
    changed so that they were locked down.
    Occasionally, I thought I isolated the problem. At times,
    recreating the
    entire site worked. At other times, it helped for the server
    to be rebooted.
    At times I thought it was because of the firewall or content
    filter that was
    doing it. I think it was a Windows Server that I had the
    problems with. I
    don't remember if the other servers gave me problems.
    I never really resolved it. Now I'm at a different job and I
    have but a
    passing interest in what it might be.
    Sorry I don't have anything solid.

Maybe you are looking for

  • New to ipod touch - several issues and ?s - any help will be appreciated

    Hello - I received an ipod touch for christmas and have been enjoying it tons! I'm having a "duh" moment-can you please help. How do I move the icons around from page to page? I was able to get it to work once - but don't know how I did it and now ca

  • OpenGL 2.0–capable system (for CS6)

    Is the iMac 2011 with AMD Radeon 6970m 2GB an OpenGL 2.0–capable system?  Does anyone know how I can find this out?  (I'm desperate to find out if the iMAC I just bought 18 days ago will support CS6 Production Premium) Thank you!

  • CCM 2.0 content file

    Hi Gurus,    Is it possible to download the content file from exisiting catalog into CSV format?  If so let me know the procedure for the same. Points for sure................. Regards SRMUSER

  • I am new to photoshop...I am trying to photomerge a family photo.

    I took say 6 photos of family members at different times.  I am trying to put everyone in one picture is this possible?  I tried doing one and i ended up having my brother overlap me..lol  I have Photoshop elements 8.  I just need to make a family ph

  • Bi related security kt points

    Hi , any can guide me about security related kt session in bw what points we need to ask. bw 3.5 version