PHP code example of intellex / filesystem

1. Go to this page and download the library: Download intellex/filesystem 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/ */

    

intellex / filesystem example snippets



	$file = new File('echo.txt');
	$dir = new Dir('bucket');


	$file->exists();
	$file->isReadable();
	$file->isWritable();
	$file->touch();
	$file->delete();
	
	$path = $file->getPath();
	$path = "{$file}";


	$content = $file->read();
	$file->write('overwrite content');
	$file->write('append to existing content', true);


	$file->moveTo($dir);
	$file->moveTo(new File('rename.txt'));
	$file->moveTo('rename.txt');


	$file->copyTo($dir);
	$file->copyTo(new File('file-copy.txt'));
	$file->copyTo('file-copy.txt');


	$dir->listDirectory();
	$dir->listDirectory('*.txt');


	$dir->find('*.xml');