This package allows you to quickly create, use and delete a temporary directory in the system's temporary directory.
Here's a quick example on how to create a temporary file and delete it:
use Spatie\TemporaryDirectory\TemporaryDirectory;
$temporaryDirectory = (new TemporaryDirectory())->create();
// Get a path inside the temporary directory
$temporaryDirectory->path('temporaryfile.txt');
// Delete the temporary directory and all the files inside it
$temporaryDirectory->delete();
You can install the package via composer:
composer require spatie/temporary-directory
To create a temporary directory simply call the create
method of the TemporaryDirectory
. By default the temporary directory will be created in a timestamped directory in your system's temporary directory (usually /tmp
).
(new TemporaryDirectory())->create();
If you want to use a custom name for your temporary directory instead of the timestamp call the name
method before the create
method.
(new TemporaryDirectory())
->name(string $name)
->create();
By default an exception will be thrown when if a directory already exists with the given $name
. You can override this behaviour by calling the force
method in combination with the name
method.
(new TemporaryDirectory())
->name(string $name)
->force()
->create();
You can set a custom location in which your temporary directory will be created by passing the $location
argument to the TemporaryDirectory
constructor.
(new TemporaryDirectory(string $location))
->create();
Optionally you can call the location
method with a $location
argument.
(new TemporaryDirectory())
->location(string $location)
->create();
You can use the path
method to determine the full path to a file or directory in the temporary directory:
$temporaryDirectory = (new TemporaryDirectory())->create();
$temporaryDirectory->path('dumps/datadump.dat'); // return /tmp/1485941876276/dumps/datadump.dat
Use the empty
method to delete all the files inside the temporary directory.
$temporaryDirectory->empty();
Once you're done processing your temporary data you can delete the entire temporary directory using the delete
method. All files inside of it will be deleted.
$temporaryDirectory->delete();
Please see CHANGELOG for more information what has changed recently.
$ composer test
You're free to use this package (it's MIT-licensed), but if it makes it to your production environment we highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using.
Our address is: Spatie, Samberstraat 69D, 2060 Antwerp, Belgium.
The best postcards will get published on the open source page on our website.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Spatie is a webdesign agency based in Antwerp, Belgium. You'll find an overview of all our open source projects on our website.
The MIT License (MIT). Please see License File for more information.