{"id":23661162,"url":"https://github.com/brunos3d/vscode-new-files","last_synced_at":"2026-07-22T00:34:01.330Z","repository":{"id":269522726,"uuid":"907681072","full_name":"brunos3d/vscode-new-files","owner":"brunos3d","description":"An extension to create multiple files at once using a comma-separated list","archived":false,"fork":false,"pushed_at":"2024-12-24T09:11:11.000Z","size":6173,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-25T12:12:39.680Z","etag":null,"topics":["code","context-menu","create","creation","extension","files","helper","multiple","new","options","plugin","utility","vscode"],"latest_commit_sha":null,"homepage":"https://marketplace.visualstudio.com/items?itemName=brunos3d.vscode-new-files","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/brunos3d.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2024-12-24T06:21:27.000Z","updated_at":"2024-12-24T17:04:39.000Z","dependencies_parsed_at":"2024-12-24T18:15:21.429Z","dependency_job_id":"b300e334-321a-4cb3-b074-cab934e2073e","html_url":"https://github.com/brunos3d/vscode-new-files","commit_stats":null,"previous_names":["brunos3d/vscode-new-files"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/brunos3d/vscode-new-files","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brunos3d%2Fvscode-new-files","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brunos3d%2Fvscode-new-files/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brunos3d%2Fvscode-new-files/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brunos3d%2Fvscode-new-files/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/brunos3d","download_url":"https://codeload.github.com/brunos3d/vscode-new-files/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brunos3d%2Fvscode-new-files/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35742291,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-07-20T02:08:10.276Z","status":"online","status_checked_at":"2026-07-21T02:00:06.728Z","response_time":109,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["code","context-menu","create","creation","extension","files","helper","multiple","new","options","plugin","utility","vscode"],"created_at":"2024-12-29T04:56:13.786Z","updated_at":"2026-07-22T00:34:01.300Z","avatar_url":"https://github.com/brunos3d.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Multiple Files Creator\n\n## Overview\n\nThe Multiple Files Creator extension for Visual Studio Code allows you to create multiple files at once using a comma-separated list. This is especially useful for quickly setting up project structures.\n\n## Features\n\n- Create multiple files in one go.\n- Supports nested folder structures.\n- Optionally specify file extensions for all files using a pipe (`|`) syntax.\n- Adds a \"New Files...\" option in the context menu of the Explorer view.\n\n## Demo\n\n![Demo Video](docs/demo.gif)\n\n## Installation\n\n1. Open Visual Studio Code.\n2. Go to the Extensions view by clicking on the Extensions icon in the Activity Bar on the side of the window or by pressing `Ctrl+Shift+X`.\n3. Search for \"Multiple Files Creator\".\n4. Click \"Install\" to install the extension.\n\n## Usage\n\n### Using the Command Palette\n\n1. Open the Command Palette by pressing `Ctrl+Shift+P` (or `Cmd+Shift+P` on macOS).\n2. Type `New Files...` and select the `New Files...` command.\n3. Enter the file names separated by commas. For example: `file1.tsx,hooks/file2.tsx,file3.tsx`.\n\n### Using the Context Menu\n\n1. Right-click on a folder in the Explorer view.\n2. Select `New Files...` from the context menu.\n3. Enter the file names separated by commas. For example: `file1,hooks/file2,file3|.tsx`.\n\n## Examples\n\n### Basic Usage\n\n- Input: `file1.tsx,hooks/file2.tsx,file3.tsx`\n- Result:\n  - `file1.tsx`\n  - `hooks/file2.tsx`\n  - `file3.tsx`\n\n### Using Pipe Syntax for Extensions\n\n- Input: `file1,hooks/file2,file3|.tsx`\n- Result:\n  - `file1.tsx`\n  - `hooks/file2.tsx`\n  - `file3.tsx`\n\n### Creating Nested Folders\n\n- Input: `file1.tsx,hooks/file2.tsx,file3.tsx`\n- Result:\n\n  - `file1.tsx`\n  - `hooks` (folder)\n    - `file2.tsx`\n  - `file3.tsx`\n\n- Input: `file1,hooks/file2,file3|.tsx`\n- Result:\n  - `file1.tsx`\n  - `hooks` (folder)\n    - `file2.tsx`\n  - `file3.tsx`\n\n## Contributing\n\nIf you find any issues or have suggestions for new features, please open an issue or submit a pull request on [GitHub](https://github.com/brunos3d/vscode-new-files).\n\n## License\n\nThis extension is licensed under the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrunos3d%2Fvscode-new-files","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrunos3d%2Fvscode-new-files","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrunos3d%2Fvscode-new-files/lists"}