PHP code example of partnermarketing / file-system-bundle

1. Go to this page and download the library: Download partnermarketing/file-system-bundle library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

partnermarketing / file-system-bundle example snippets



namespace Your\Namespace\Path;

use Partnermarketing\FileSystemBundle\Factory\FileSystemFactory;

class ServiceName
{
    private $fileSystem;
    
    public function __construct(FileSystemFactory $fileSystemFactory)
    {
        // This will build a fileSystem based on configs specified.
        $this->filesystem = $fileSystemFactory->build();
    }
}


$this->filesystem->read($varWithFilePath);

// Writes the content of the $source into the $path returns the URL.
$url = $this->filesystem->write($path, $source);

// Writes the $content into the $path returns the URL:
$url = $this->filesystem->writeContent($path, $content);

// Deletes the file $path:
$isDeleted = $this->filesystem->delete($path);

$isRenamed = $this->filesystem->rename($sourcePath, $targetPath);

// Returns an array of files under given directory.
$filesArray = $this->filesystem->getFiles($directory = '');

// Copies all files under given source directory to given target directory.
$filesArray = $this->filesystem->copyFiles($sourceDir, $targetDir);

$fileExists = $this->filesystem->exists($varWithFilePath);

$isDirectory = $this->filesystem->isDirectory($varWithFilePath);

$absoluteFileUrl = $this->filesystem->getURL($path);

// Copy a file to the local temporary directory, and return the full path.
$temporaryFilePath = $this->filesystem->copyToLocalTemporaryFile($path);