Skip to main content

Organizing Random Files Quickly With Batch Files


Today, I will be working on creating a few batch files and organizing them as well. The files are very simple to make and organize.

Here are the names of the files I will be creating:
- Move Wallpapers
- Move MP4s
- Move MP3s
- Move Trailers
- Move JPG
- Move PNG

I know it may sound like a lot, but I believe this will greatly help me with organizing my files. I plan to keep these files in one folder on the desktop, hide all desktop icons and folders, and pin the "Folder" for my batch files on the left sidebar for Windows 11 Explorer.

I will explain how I will be doing this step by step below:

1. Make a folder on the desktop called "Bat" and then open Notepad.
2. Open the main folders for things like Pictures, Videos, and Music.
3. Create new folders inside each folder.

Now, the main folders will have subfolders like this: 
- Videos> Anime, Captures, Fitness, Movies, New Videos, TV Shows.

All MP4 files from the "Downloads" area will be moved to "New Videos," and then I will organize them from there.

The same process will be repeated for each file type.

So, my first batch file looks like this:

@echo off 
Title Move_MP4 
pause 
echo To move all files ending with .mp4 
move "C:\Users\USER Name\Downloads\*.mp4" "C:\Users\USER Name\Videos\New Videos"

It's pretty simple.

Next, all I need to do is save this Notepad file as Move_MP4 and then do the same with the other file names. I will change from Move_MP4 to Move_MP3 and then change the location to move to a folder called "New Music," which I will create inside the "Music" main folder. I will continue this process until all batch files are created for the "Downloads" folder.

This process is straightforward once you have the files created the way you want them.

Comments

Popular posts from this blog

Chrome Account For Shopping Only

When it comes to setting up a separate Google Chrome Browser account for shopping, the best thing to do is keep it simple. The first step is to create a Google account specifically for shopping, using your name and a shopping-related term like "shopping," "shop," or "buy." Next, customize the look and feel of the browser for this account. The appearance can be simple or more organized, depending on your preferences.  Here is how I set up the look and feel for my shopping account: 1. Go to chrome://settings and add Auto fill and passwords for the current shopping email and Yahoo shopping email. I use Yahoo mail for password resets and order notifications. In the settings area, go to appearance and add the home page icon to the top of the browser. Turn on Show Bookmarks Bar. Setting this up is straightforward. The next step is to add extensions. Here are a few that I use: 1. Bonjourr 2. uBlock Origin 3. Ibotta 4. Honey 5. CamelCamelCamel These are just a few...

Google Chrome Extension Review & Setup: Bonjourr

Today, I will be customizing my "Bonjourr Extension". There are several things that can be changed on the extension. I have decided to set up a few extra Google Chrome accounts. You don't need a Google account for each and every account; you can have them set up for random stuff. I will explain more about the reasons for having more than one "Chrome Account" in another post. Starting out, I made a Chrome account for shopping with just a Yahoo! Mail account. Then, I decided to create a free texting and calling phone number to create a Gmail account, so I can have a Gmail account for shopping as well. I signed into my new Chrome account, which was only using a Yahoo! Mail free account, and then I used that email address to create a free texting and calling number. I used that number to create a new Google Gmail account. Then, I downloaded and installed the extension "Bonjourr" and started the setup process. Step 1: Click the gear icon and then in the ...

What I learned Today That I Hope Others Will Find Helpful As Well

Today I have learned a few things that have made things a bit easier for my video file renaming. As well as how to organize my files and icons a bit more rather then having them all over my my main desktop screen.  The first thing I learn was how to use Bulk Renamer Utility to rename files by using a TXT file. For renaming my movies. I normally will rename the files by copy as path and then edit the names inside Notepad++ one movie at a time and then copy and paste into the Bulk Renamer Utility. But by using the Bulk Renamer Utility with a TXT file it makes it much faster and easier.    I have also learned how to save a folder to my windows 11 taskbar which I have not fully figured out before. But by watching a youtube video I have found out how to save the folder to my taskbar which makes getting my ahk "Auto Hotkeys" into one place much easier. Below is the video I have found on youtube I hope you find it helpful as well and also leave a comment. I have left a comment o...