Switchboard – Simplify file organisation on your machine/s.

Do you ever get annoyed that your Downloads folder gets cluttered with all types of files? Do you wish you could automatically organise them into separate, organised folders? Switchboard is a tool to help simplify file organisation on your machine/s….


This content originally appeared on DEV Community and was authored by Cian Gallagher

Image description

Do you ever get annoyed that your Downloads folder gets cluttered with all types of files? Do you wish you could automatically organise them into separate, organised folders? Switchboard is a tool to help simplify file organisation on your machine/s.

Switchboard works by monitoring a directory you provide (or list of directories), and uses file system notifications to move a matched file to the appropriate destination directory of your choosing.

Motivation

I built switchboard out of a frustration with the sporadic mess of files strewn throughout my local machine and network file servers. I thought what best way to try and fix this problem then build something, in Go no less :)

Switchboard is new, so I'd love to get it into peoples hands to be used. I'd also love to here any suggestions or improvements you'd like to see - please head over to Github Discussions to have a chat!

Usage

See the video below as example. Here, I give switchboard a path to watch, a destination where I want matched files to move to, and the file extension of the type of files I want to move.

You can also visit https://goswitchboard.io/ for all your documentation needs, news, and updates!

asciicast

Installation

You can install switchboard pre-compiled binary in a number of ways.

Homebrew
brew tap Cian911/switchboard
brew install switchboard

// Check everything is working as it should be
switchboard -h
Go Install
go install github.com/Cian911/switchboard@latest
Manually

You can download the pre-compiled binary for your specific OS type from the OSS releases page. You will need to copy these and extract the binary, then move it to you local bin directory. See the example below.

wget https://github.com/Cian911/switchboard/releases/download/${VERSION}/${PACKAGE_NAME}
sudo tar -xvf ${PACKAGE_NAME} -C /usr/local/bin/
sudo chmod +x /usr/local/bin/switchboard

Quick Start

Using switchboard is pretty easy. Below lists the set of commands and flags you can pass in.

Run the switchboard application passing in the path, destination, and file type you'd like to watch for.

Usage:
   watch [flags]

Flags:
      --config string        Pass an optional config file containing multiple paths to watch.
  -d, --destination string   Path you want files to be relocated.
  -e, --ext string           File type you want to watch for.
  -h, --help                 help for watch
  -p, --path string          Path you want to watch.

To get started quickly, you can run the following command, passing in the path, destination, and file extenstion you want to watch for. See the example below.

switchboard watch -p /home/user/Downloads -d /home/user/Movies -e .mp4


This content originally appeared on DEV Community and was authored by Cian Gallagher


Print Share Comment Cite Upload Translate Updates
APA

Cian Gallagher | Sciencx (2022-01-06T00:03:34+00:00) Switchboard – Simplify file organisation on your machine/s.. Retrieved from https://www.scien.cx/2022/01/06/switchboard-simplify-file-organisation-on-your-machine-s/

MLA
" » Switchboard – Simplify file organisation on your machine/s.." Cian Gallagher | Sciencx - Thursday January 6, 2022, https://www.scien.cx/2022/01/06/switchboard-simplify-file-organisation-on-your-machine-s/
HARVARD
Cian Gallagher | Sciencx Thursday January 6, 2022 » Switchboard – Simplify file organisation on your machine/s.., viewed ,<https://www.scien.cx/2022/01/06/switchboard-simplify-file-organisation-on-your-machine-s/>
VANCOUVER
Cian Gallagher | Sciencx - » Switchboard – Simplify file organisation on your machine/s.. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/01/06/switchboard-simplify-file-organisation-on-your-machine-s/
CHICAGO
" » Switchboard – Simplify file organisation on your machine/s.." Cian Gallagher | Sciencx - Accessed . https://www.scien.cx/2022/01/06/switchboard-simplify-file-organisation-on-your-machine-s/
IEEE
" » Switchboard – Simplify file organisation on your machine/s.." Cian Gallagher | Sciencx [Online]. Available: https://www.scien.cx/2022/01/06/switchboard-simplify-file-organisation-on-your-machine-s/. [Accessed: ]
rf:citation
» Switchboard – Simplify file organisation on your machine/s. | Cian Gallagher | Sciencx | https://www.scien.cx/2022/01/06/switchboard-simplify-file-organisation-on-your-machine-s/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.