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.
Description
Created Dir module and deleted old doc system
This pull request includes significant changes to the project structure and documentation, primarily focusing on the removal of Sphinx documentation files and the introduction of new directory and file management modules. The most important changes include the deletion of Sphinx-related files, renaming and updating file paths, and the addition of a new directory manager module with corresponding tests.
Removal of Sphinx documentation:
Makefile,conf.py,index.rst, andmake.batrelated to Sphinx documentation. [1] [2] [3] [4]README.md.Project structure updates:
modules/files/file_manager.pytomodules/filesystem/file_manager.pyand updated references accordingly. [1] [2] [3]New functionality:
modules/filesystem/dir_manager.pyto manage directory operations, including listing directories and files, creating and deleting directories, and checking directory existence.tests/test_dir_manager.pyto provide unit tests for the new directory manager module.