{"id":17637858,"url":"https://github.com/ourcodeworld/cordova-ourcodeworld-filebrowser","last_synced_at":"2025-09-12T00:20:16.817Z","repository":{"id":57207614,"uuid":"73213321","full_name":"ourcodeworld/cordova-ourcodeworld-filebrowser","owner":"ourcodeworld","description":"A native Android filebrowser (select and create files and folders) for Cordova","archived":false,"fork":false,"pushed_at":"2019-04-21T00:11:35.000Z","size":23,"stargazers_count":23,"open_issues_count":10,"forks_count":24,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-08-18T01:29:13.506Z","etag":null,"topics":["android","cordova","cordova-ourcodeworld-filebrowser","filebrowser","folder-picker","picker"],"latest_commit_sha":null,"homepage":null,"language":"Java","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/ourcodeworld.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}},"created_at":"2016-11-08T18:08:13.000Z","updated_at":"2024-07-30T03:21:35.000Z","dependencies_parsed_at":"2022-09-10T04:13:10.286Z","dependency_job_id":null,"html_url":"https://github.com/ourcodeworld/cordova-ourcodeworld-filebrowser","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ourcodeworld/cordova-ourcodeworld-filebrowser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ourcodeworld%2Fcordova-ourcodeworld-filebrowser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ourcodeworld%2Fcordova-ourcodeworld-filebrowser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ourcodeworld%2Fcordova-ourcodeworld-filebrowser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ourcodeworld%2Fcordova-ourcodeworld-filebrowser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ourcodeworld","download_url":"https://codeload.github.com/ourcodeworld/cordova-ourcodeworld-filebrowser/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ourcodeworld%2Fcordova-ourcodeworld-filebrowser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274729620,"owners_count":25338744,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-11T02:00:13.660Z","response_time":74,"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":["android","cordova","cordova-ourcodeworld-filebrowser","filebrowser","folder-picker","picker"],"created_at":"2024-10-23T03:06:15.849Z","updated_at":"2025-09-12T00:20:16.736Z","avatar_url":"https://github.com/ourcodeworld.png","language":"Java","readme":"# cordova-ourcodeworld-filebrowser Plugin\n\nA cordova implementation of [NoNonsense-FilePicker](https://github.com/spacecowboy/NoNonsense-FilePicker) for Android.\n\nThis plugin allow you to select folder and files, and at the same time create folders and create files (not a file is created actually, but it will return the filepath and name of the \"choosen path\").\n\n\u003cimg src=\"https://raw.githubusercontent.com/spacecowboy/NoNonsense-FilePicker/master/screenshots/Nexus6-picker-dark.png\"\nwidth=\"25%\" /\u003e\n\n\u003cimg src=\"https://raw.githubusercontent.com/spacecowboy/NoNonsense-FilePicker/master/screenshots/Nexus10-picker-dark.png\"\nwidth=\"50%\" /\u003e\n\u003c/p\u003e\n\n\u003cp\u003e\n\u003cimg src=\"https://raw.githubusercontent.com/spacecowboy/NoNonsense-FilePicker/master/screenshots/Nexus6-picker-light.png\"\nwidth=\"25%\" /\u003e\n\n\u003cimg src=\"https://raw.githubusercontent.com/spacecowboy/NoNonsense-FilePicker/master/screenshots/Nexus10-picker-light.png\"\nwidth=\"50%\" /\u003e\n## Installation\n\nInstall the plugin\n\n```batch\n$ cordova plugin add https://github.com/ourcodeworld/cordova-ourcodeworld-filebrowser.git\n```\n\nAfter installing the plugin, remember that the targetSdkVersion of cordova needs to be less than 24 e.g in Cordova 9.0.1, you need to specify inside the `config.xml` file of your project:\n\n```xml\n\u003cplatform name=\"android\"\u003e\n    \u003cpreference name=\"android-minSdkVersion\" value=\"19\" /\u003e\n    \u003cpreference name=\"android-targetSdkVersion\" value=\"23\" /\u003e\n\u003c/platform\u003e\n```\n\n## Usage\n\nA global object `OurCodeWorld.Filebrowser` will be available in your window. This object offers a file picker, folder picker, mixed folder and file picker and the file creation dialog.\n\n```javascript\n// Single file selector\nwindow.OurCodeWorld.Filebrowser.filePicker.single({\n    success: function(data){\n        if(!data.length){\n            // No file selected\n            return;\n        }\n\n        // Array with filepaths\n        // [\"file:///storage/emulated/0/360/security/file.txt\", \"file:///storage/emulated/0/360/security/another-file.txt\"]\n    },\n    error: function(err){\n        console.log(err);\n    }\n});\n\n// Single folder selector\nwindow.OurCodeWorld.Filebrowser.folderPicker.single({\n    success: function(data){\n        if(!data.length){\n            // No folders selected\n            return;\n        }\n\n        // Array with paths\n        // [\"file:///storage/emulated/0/360/security\", \"file:///storage/emulated/0/360/security\"]\n        console.log(data);\n    },\n    error: function(err){\n        console.log(err);\n    }\n});\n```\n\nCheck the documentation to see more methods of the plugin like the creation of file, mixed file and folder picker etc.\n\n## External links\n\n- [Documentation](http://docs.ourcodeworld.com/projects/cordova-our-code-world-file-browser)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fourcodeworld%2Fcordova-ourcodeworld-filebrowser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fourcodeworld%2Fcordova-ourcodeworld-filebrowser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fourcodeworld%2Fcordova-ourcodeworld-filebrowser/lists"}