You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
2.3 KiB

---
layout: default
permalink: /core-concepts/
title: Core Concepts
---
# Core concepts
In order to better understand how and why Flysystem works
the way it does, several concepts require some explanation.
## Overview
* [Focus/Goal](#focus)
* [Adapters](#adapters)
* [Relative Paths](#relative-paths)
* [Files first](#files-first)
## Focus
Flysystem's focus is to provide a standardized interface to working
with filesystems. We've searched for common ground across various
filesystems and implemented that in a cross-filesystem-compatible way.
This also means that we often don't support filesystem specific things.
This limitation is by design.
## Adapters
The main entry point for the file system API is the
FilesystemInterface. When working with file systems, this is
the class you'll want to be talking to.
Flysystem works the way it does because of its use of the
adapter pattern. The inconsistencies of the different
filesystems are eliminated in these adapters.
While adapters have a public interface (publicly accessible
methods), they should be considered __internal__.
Every adapter should always be wrapped in a `League\Flysystem\Filesystem`
class:
```php
$filesystem = new League\Flysystem\Filesystem($yourAdapter)
```
## Relative paths
Portability is a very important concept within Flysystem. In order
to roll out this aspect to the fullest, all paths in Flysystem are
relative. File system root paths, whether remote or local, are viewed
as endpoints. Because of this, file systems are movable independently.
This allows parts of the application file handling to move to other
storage types, while the majority is in a centralized location.
Like the storage type, root paths are an implementation detail. When
root paths are defined as configuration, the stability of your code
improves.
## Files first, directories second.
Flysystem has a files first approach. Storage systems like AWS S3
are linear file systems, this means the path to a file is used as an
identifier, rather than a representation of all the directories it's
nested in.
This means directories are second class citizens. Because of this,
directories will be automatically created on file systems that require
them when writing files. Not only does this make handling writes a lot
easier, it also ensures a consistent behaviors across all file system
types.