An open API service indexing awesome lists of open source software.

https://github.com/atechguide/filesystem

Emulating a File System in Scala
https://github.com/atechguide/filesystem

project

Last synced: 10 months ago
JSON representation

Emulating a File System in Scala

Awesome Lists containing this project

README

          

# File System in Scala

Emulating an *Immutable* File System in Scala. It supports following Commands
- **mkdir**: For creating new Directory
- **ls**: For displaying the contents of current Directory
- **pwd**: Displays present Working Directory
- **touch**: Creates an empty file
- **cd**: Change Directory
- **rm** Delete Directory
- **echo** Works as linux echo command (Tt doesn't support absolute/relatives path for file names)

## References
- [Rock the jvm scala for beginners](https://www.udemy.com/rock-the-jvm-scala-for-beginners/)