How do I "cut" a file on OS X?

39,584

Solution 1

It is possible to cut-paste files/folders in Mac OS X 10.7 (Lion)’s Finder (so, since at least 2011), but the Mac OS X way is slightly different from the Windows way. This method works in other versions of Mac OS X as well.

  1. -C (copy first)
  2. --V (now move to it’s destination)

So, the steps are very similar to copy-paste, but holding (option key) moves the file/folder instead of copies it.

You can also have a look in the edit menu after copying a file - press while looking to see the difference: “paste” changes to “move item here.”

Solution 2

The method using ⌘-C and ⌘-⌥-V is by far the easiest and arguably the most efficient way to cut / paste files in the Finder if that's all you want.

If you're going for 3rd party extensions or applications and want an awesome Finder replacement, I'd suggest giving Pathfinder (http://www.cocoatech.com/pathfinder/) a try.

It's the most feature rich Finder replacement out there...

Solution 3

I like XtraFinder

It's an enhanced version of Finder. You get Cut & Paste and a bunch of other features.

And it's free.

Share:
39,584

Related videos on Youtube

user4292
Author by

user4292

Updated on September 17, 2022

Comments

  • user4292
    user4292 over 1 year

    I'm a newbie on the Mac world and I'd like to know if it's possible to cut a file using a shortcut (like Ctrl+X on Windows).

  • Dmitry
    Dmitry over 8 years
    Author, mark it as answer.
  • clhy
    clhy over 8 years
    **⌘-C ** doesn't cut, it copies
  • C. Sederqvist
    C. Sederqvist over 8 years
    Not when it is followed by ⌘-⌥-V. That's like the whole point. Then it moves e.g. cuts in practice. ⌘-V would do a copy -> paste.
  • byxor
    byxor over 4 years
    This is mind-numbingly unintuitive to me. Maybe I'm just too "stuck in my ways" or something.
  • C. Sederqvist
    C. Sederqvist about 3 years
    @byxor Might seem non-intuitive, but depending on how the OS actually stores the content (in memory) after it has been "cut" could lead to all sorts of trouble if something happens before the move operation completes. So, most implementations splits this into a three part process chain, macOS just doesn't call it "cut", but the same thing happens using cmd+opt+v at target folder after a cmd+c copy: Copy->Paste->Delete Original.
  • Elliott
    Elliott about 2 years
    @C.Sederqvist, the way it works in Ubuntu at least is that you Ctrl+X, which does a copy (and remembers it's a cut), then Ctrl+V somewhere else, which changes the location of the file. That way it's impossible to delete a file with Ctrl+X, while still remaining consistent with text editing, etc.