Skip to content

A small package that provides an object to create a file system from a given "seed" directory

License

Notifications You must be signed in to change notification settings

steve-r-lewis/file-system-tree

Repository files navigation

File System Tree

@Version1.1.0

Provides a class definition which can be used to instantiate an object that has properties and methods for manipulating lists of all the subfolder nodes and files contained within a defined parent directory. The specific parent directory can be passed as an optional argument to the object constructor.

If no parent directory path is supplied to the object constructor when the object is instantiated, the new object defaults to the directory of the local host system from where the php CLI was called.


Installation

Easy installation using Composer:

$ composer require steve-r-lewis/file-system-tree

or add it manually to your composer.json file.


Use

FileSystemTree

FileSystemTree constructor.
    __construct  (string $dirRead = DIRECTORY_SEPARATOR)
    @param string $dirRead


Properties

The object has the following properties;

  • $fileSystemTree
    • @var private array|null
  • $listRootFolders
    • @var private array
  • $listFoldersAndFiles
    • @var private array
  • $listFolders
    • @var private array
  • $listFiles
    • @var private array

Methods

  • getFileSystemTree ()
    • @return array|null
  • getListRootFolders ()
    • @return array
  • getListFoldersAndFiles ()
    • @return array
  • getListFolders ()
    • @return array
  • getListFiles ()
    • @return array

DISCLAIMER

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


LICENSE DETAILS

For more information regarding Open Source Licensing you can visit;

  1. https://www.mit.edu/~amini/LICENSE.md

  2. https://opensource.org/licenses/MIT


AUTHOR

Steve Lewis steve@themodulefactory.com
Copyright 2021 © The Module Factory Ltd. Company Number; 09989173


About

A small package that provides an object to create a file system from a given "seed" directory

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages