https://github.com/dipankardas011/my-file-management
Basic Files and folders
https://github.com/dipankardas011/my-file-management
files
Last synced: 5 months ago
JSON representation
Basic Files and folders
- Host: GitHub
- URL: https://github.com/dipankardas011/my-file-management
- Owner: dipankardas011
- Created: 2021-10-30T15:05:55.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-01T15:07:35.000Z (almost 4 years ago)
- Last Synced: 2025-02-16T18:26:56.934Z (8 months ago)
- Topics: files
- Language: C
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Creating the File management
simple one
* each nodes contains a max size of nodes that it can have example 11 items inside one directory
* root contains only node and others are NULL
eg```graph
root nill nill nill nill..11
/ / / /...\ \ \
/ .. ... ........
/
child1 child2 child3 ... child10
```## to run the container
```bash
docker build buildenv -t "name-of-image"
```
to run the contaniner
```ps
docker run --rm -it -v "${pwd}:/root/env" "name-of-image"
```
## CleanupRemove the build-evironment image:
```ps
docker rmi "name-of-image" -f
```