Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Downloaded videos are moved into corresponding lesson folders.
Example
The output file structure of the current script looks similar to this:
. ├── Ex1 - Quiz Game - Intro.mp4 ├── Ex1 - Quiz Game - Solution (part 1).mp4 ├── Ex1 - Quiz Game - Solution (part 2).mp4 ├── Ex2 - URL Shortener - Intro.mp4 ├── Ex2 - URL Shortener - Solution.mp4 ├── Ex3 - Choose Your Own Adventure - 01 - Intro.mp4 ├── Ex3 - Choose Your Own Adventure - 02 - Parsing the JSON.mp4 ├── Ex3 - Choose Your Own Adventure - 03 - Refactoring our JSON Parsing.mp4 ├── Ex3 - Choose Your Own Adventure - 04 - Building the http Handler.mp4 ├── Ex3 - Choose Your Own Adventure - 05 - Parsing Paths.mp4 ├── Ex3 - Choose Your Own Adventure - 06 - Styling the HTML.mp4
This pull request contains commits that will organize downloaded video files into lesson folders, similar to this.
. ├── Ex1 Quiz Game │ ├── Intro.mp4 │ ├── Solution (part 1).mp4 │ └── Solution (part 2).mp4 ├── Ex2 URL Shortener │ ├── Intro.mp4 │ └── Solution.mp4 └── Ex3 Choose Your Own Adventure ├── 01 Intro.mp4 ├── 02 Parsing the JSON.mp4 ├── 03 Refactoring our JSON Parsing.mp4 ├── 04 Building the http Handler.mp4 ├── 05 Parsing Paths.mp4 ├── 06 Styling the HTML.mp4