{"id":25838350,"url":"https://github.com/ovuiproduction/unix-file-system-simulation","last_synced_at":"2026-05-10T21:51:15.869Z","repository":{"id":275583358,"uuid":"727771238","full_name":"ovuiproduction/Unix-File-System-Simulation","owner":"ovuiproduction","description":"This project simulates a Unix-like file system using an N-ary tree data structure, enabling efficient file and directory management. It supports essential operations like creation, deletion, traversal, and renaming while providing a command-line interface that mimics Unix shell commands for an intuitive user experience.","archived":false,"fork":false,"pushed_at":"2025-10-29T05:41:30.000Z","size":20,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-29T07:27:46.103Z","etag":null,"topics":["command-line-interface","data-structures","directory-management","file-management","file-system","filesystem-simulation","n-ary-tree","shell-commands","tree-structure","unix-shell"],"latest_commit_sha":null,"homepage":"https://github.com/ovuiproduction/Unix-File-System-Simulation","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ovuiproduction.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-12-05T14:42:22.000Z","updated_at":"2025-10-29T05:41:33.000Z","dependencies_parsed_at":null,"dependency_job_id":"7fd325ea-c850-4926-a9f5-ef2ee3d4201a","html_url":"https://github.com/ovuiproduction/Unix-File-System-Simulation","commit_stats":null,"previous_names":["ovuiproduction/unix-file-system-simulation"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ovuiproduction/Unix-File-System-Simulation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ovuiproduction%2FUnix-File-System-Simulation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ovuiproduction%2FUnix-File-System-Simulation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ovuiproduction%2FUnix-File-System-Simulation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ovuiproduction%2FUnix-File-System-Simulation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ovuiproduction","download_url":"https://codeload.github.com/ovuiproduction/Unix-File-System-Simulation/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ovuiproduction%2FUnix-File-System-Simulation/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32873150,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-10T13:40:02.631Z","status":"ssl_error","status_checked_at":"2026-05-10T13:40:02.145Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["command-line-interface","data-structures","directory-management","file-management","file-system","filesystem-simulation","n-ary-tree","shell-commands","tree-structure","unix-shell"],"created_at":"2025-03-01T03:49:15.459Z","updated_at":"2026-05-10T21:51:15.642Z","avatar_url":"https://github.com/ovuiproduction.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Unix File System Simulation using N-ary Tree\n\n### Demo\n\n**[Demo Video](https://youtu.be/lfB_HMSvs-c)**\n\n### Overview\n\nThis project simulates a Unix-like file system using an N-ary tree data structure. It provides essential file and directory operations such as creation, deletion, traversal, and renaming. The project also includes a command-line interface that mimics Unix shell commands.\n\n----\n\n### Tech Stack\n```bash\n# Programming Language\nC\n\n# Data Structures\nN-ary Tree\n\n# Concepts\nFile System Management\n```\n---\n\n### File System Operations\n```bash\n# Available commands (usage)\nman                      # Display help\nls [-l]                  # List files/directories, -l for details (date/type)\npwd                      # Print working directory\ncd \u003cdir\u003e                 # Change directory (.., ~ or / supported)\nmkdir \u003cdir\u003e              # Create a new directory\ntouch \u003cfile\u003e             # Create a new empty file\nrm \u003cfile/dir\u003e            # Remove a file or empty directory\ncp \u003csrc\u003e \u003cdst\u003e           # Copy file (files only)\nmv \u003csrc\u003e \u003cdst_dir\u003e       # Move file or directory into destination directory\nrename \u003cold\u003e \u003cnew\u003e       # Rename file or directory in current dir\ncat \u003cfile\u003e               # Display file content\necho \u003e \u003cfile\u003e            # Write a single line to file (overwrites or creates)\nfind \u003cname\u003e              # Find file/directory path (searches entire tree)\ntree                     # Display directory tree for current directory\nclear                    # Clear the screen\nexit                     # Exit the program\n```\n\n---\n\n### Features\n\n1. File and Directory Management: Create, delete, rename, and move files and directories.\n\n2. Navigation: Change directories (cd), list contents (ls), and print the working directory (pwd).\n\n3. File Operations: Create files (touch), read content (cat), and copy files (cp).\n\n4. Search: Find files and directories using the find command.\n\nMimics Unix Shell Commands: Supports basic Unix commands like mkdir, rm, mv, etc.\n\n---\n\n### Installation\n\nUse the following commands to install and run the project:\n\n```bash\ngit clone https://github.com/ovuiproduction/Unix-File-System-Simulation.git\ncd Unix-File-System-Simulation\ngcc Unix_File_System_Simulation.c -o app.exe\n./app.exe\n```\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fovuiproduction%2Funix-file-system-simulation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fovuiproduction%2Funix-file-system-simulation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fovuiproduction%2Funix-file-system-simulation/lists"}