Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/znframework/package-filesystem

ZN Framework Filesystem Package
https://github.com/znframework/package-filesystem

Last synced: about 2 months ago
JSON representation

ZN Framework Filesystem Package

Awesome Lists containing this project

README

        










ZN Framework Filesystem Package



Follow the steps below for installation and use.

Installation



You only need to run the following code for the installation.

```
composer require znframework/package-filesystem
```

Supported Libraries


Folder Library



Click for documentation of your library.

```php
Folder Library


Click for documentation of your library.

```php
Folder::create('Example');

Folder::delete('Example');
```

Upload Library



Click for documentation of your library.

```php
use ZN\Request\Post;

if( Post::uploadButton() )
{
Upload::mimes('image/jpeg', 'image/png')->start('uploadFile', 'upload');

output( Upload::error() );
}

echo Form::enctype('multipart')->open('form');
echo Form::file('uploadFile');
echo Form::submit('uploadButton', 'Upload');
echo Form::close();
```