Skip to content

πŸ“™ Tips and Tricks

Dasutein edited this page Feb 20, 2022 · 1 revision

Below are some tips and tricks that you can do to maximize the benefit of this extension.

Batch Move Files

This tip only works for Windows.

In Command Prompt or Windows Terminal, go to your downloads folder. Type cd downloads. Or you can go to your downloads folder then right click then click on Open in Windows Terminal

The example below will be for Twitter but you can apply this to LINE and Reddit

Let's say our file name has

LoveLive_staff-1438508572724252672-dWdc

The Goal

Get all file names containing LoveLive_staff and transfer it to another folder

In the Command Prompt or Windows Terminal, type this command

move "LoveLive_staff*" "<YOUR FOLDER PATH>"

What this will do is copy all files containing LoveLive_staff and move them into the folder you specified. Also note, the quotations in the command is there on purpose. This allows you to access the file/folder with spacing.

What if i have a custom prefix or using the option to Include Website Title?

With website Title

Twitter-LoveLive_staff-1438508572724252672-dWdc

In the Command Prompt or Windows Terminal, type this command

move "Twitter-LoveLive_staff*" "<YOUR FOLDER PATH>"

With custom prefix

SAMPLEDEMO-Twitter-LoveLive_staff-1438508572724252672-dWdc

In the Command Prompt or Windows Terminal, type this command

move "SAMPLEDEMO-Twitter-LoveLive_staff*" "<YOUR FOLDER PATH>"

Or you can simply target it with your prefix only like this

move "SAMPLEDEMO*" "<YOUR FOLDER PATH>"

With these basic commands, you can set up your own batch file to automate a lot of these processes.

Searching Files

Well this doesn't need to be explained. This is actually one of main reason I designed this extension. Since every file name has a proper name, you can easily search them by looking up the username or subreddit for example.

Clone this wiki locally