A Raycast extension that provides various actions for files selected in Finder.
Quickly move or copy selected files in Finder to a destination folder of your choice. Alfred users will be familiar with this functionality.
- Move or copy one or more files selected in Finder to any folder
- Fast and reliable folder search using macOS Spotlight (
mdfind) - Smart sorting of search results based on relevance and recency
- Recently used folders for quick access
- Folder navigation in case you don't know the exact folder name
- Indication of the selected files
- Visual feedback for successful/failed operations
- Metadata display (last used date, modification date, file type)
- Select one or more files in Finder
- Trigger the "Move to Folder" or "Copy to Folder" command in Raycast
- Search for your destination folder or navigate through directories
- Press Enter to navigate to a folder, Cmd+Return to move/copy files
Enter: Navigate to the selected folderCmd+Return: Move files to the selected folderCmd+Shift+Return: Copy files to the selected folderCmd+Shift+D: Toggle details view
Important
this extension is not available in the Raycast store. You can see the ticket here, so if you want to see it in the store, you can upvote it or smth. in the meantime, you can install it manually.
# Clone the repository
git clone https://github.com/pa1ar/finder-file-actions
cd finder-file-actions
# Install dependencies
npm install
# Build the extension
npm run build
# Create a symlink in Raycast's extension directory
npm run dev# Clone the repository
git clone https://github.com/pa1ar/finder-file-actions
cd finder-file-actions
# Install dependencies
bun install
# Build the extension
bun run build
# Create a symlink in Raycast's extension directory
bun run devAfter running these commands, the extension will be available in Raycast. You can close the terminal, and the extension will remain functional. To access it, simply:
- Open Raycast
- Search for "Move to Folder" or "Copy to Folder"
- Start using the extension.
This extension is based on the Folder Search extension originally created by GastroGeek. The folder searching functionality was adapted from the original extension, while adding new capabilities for file operations.