Giter Club home page Giter Club logo

bat-collection's Introduction

This repo includes

- change.bat for changing file extensions to .jpg
- name.bat for retrieving file names
- nested.bat for checking for nested folders

Notes and Thoughts

CHANGE.bat

I made this kit to extract my MangaRock files, though, I ended up finding something really useful.

Anyway, here's what's in that folder:
.hsd78sd78f83f [Illustrations I've unlocked]
.hsdwe87y_73mp [Illustration previews]
.mintegral700 [Ads]
Movies/.Mintegral_VC [Also Ads]
logs [Logs]
the rest [Manga chapters]

.bat, a.k.a. a Windows Batch File runs when you click on it. Here's the code, with an explanation:
@ECHO OFF turns logs off
PUSHD . place the folder it's in for execution
FOR /R %%d IN (.) DO ( for folders in the stack, do...
cd "%%d" go to that folder
IF EXIST * ( if a files exists
REN * *.jpg rename it to .jpg
) endif
) endfor
POPD pop folder from stack

Yeah. It's Assembly/SQL-like. Maybe it's closer to C, never used it. This things way too good. It's also fantastic to rename those devianart files. Will definitely abuse it. 25/10/2022

NAME.bat

Got this from SO and honestly, I don't know why I don't try to learn it.

NESTED.bat

Made this one myself. It's not terribly useful, but it's good for data scrapping larges filebases.

bat-collection's People

Contributors

roberika avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.