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
- Host: GitHub
- URL: https://github.com/atechguide/filesystem
- Owner: aTechGuide
- Created: 2019-04-22T13:38:47.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-01T14:29:39.000Z (about 7 years ago)
- Last Synced: 2024-12-31T04:41:57.769Z (over 1 year ago)
- Topics: project
- Language: Scala
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/)