All Projects → spatie → Temporary Directory

spatie / Temporary Directory

Licence: mit
A simple class to work with a temporary directory

Projects that are alternatives of or similar to Temporary Directory

App Dirs Rs
Put your Rust app's data in the right place on every platform
Stars: ✭ 147 (-74.07%)
Mutual labels:  directory, storage
Html
HTML Standard
Stars: ✭ 5,217 (+820.11%)
Mutual labels:  storage
Ramcloud
**No Longer Maintained** Official RAMCloud repo
Stars: ✭ 405 (-28.57%)
Mutual labels:  storage
Sleekdb
Pure PHP NoSQL database with no dependency. Flat file, JSON based document database.
Stars: ✭ 450 (-20.63%)
Mutual labels:  storage
Mort
Storage and image processing server written in Go
Stars: ✭ 420 (-25.93%)
Mutual labels:  storage
Oio Sds
High Performance Software-Defined Object Storage for Big Data and AI, that supports Amazon S3 and Openstack Swift
Stars: ✭ 465 (-17.99%)
Mutual labels:  storage
Cpx
A cli tool to watch and copy file globs.
Stars: ✭ 394 (-30.51%)
Mutual labels:  directory
Rxfirebase
Rxjava 2.0 wrapper on Google's Android Firebase library.
Stars: ✭ 509 (-10.23%)
Mutual labels:  storage
Offline Plugin
Offline plugin (ServiceWorker, AppCache) for webpack (https://webpack.js.org/)
Stars: ✭ 4,444 (+683.77%)
Mutual labels:  storage
Csi Digitalocean
A Container Storage Interface (CSI) Driver for DigitalOcean Block Storage
Stars: ✭ 452 (-20.28%)
Mutual labels:  storage
Imagestore
Open source google photos alternative!
Stars: ✭ 429 (-24.34%)
Mutual labels:  storage
Kinto
A generic JSON document store with sharing and synchronisation capabilities.
Stars: ✭ 4,150 (+631.92%)
Mutual labels:  storage
Vue Ls
💥 Vue plugin for work with local storage, session storage and memory storage from Vue context
Stars: ✭ 468 (-17.46%)
Mutual labels:  storage
Openstorage
A multi-host clustered implementation of the open storage specification
Stars: ✭ 407 (-28.22%)
Mutual labels:  storage
Binaryprefs
Rapidly fast and lightweight re-implementation of SharedPreferences which stores each preference in files separately, performs disk operations via NIO with memory mapped byte buffers and works IPC (between processes). Written from scratch.
Stars: ✭ 484 (-14.64%)
Mutual labels:  storage
Swarm
swarm docs
Stars: ✭ 403 (-28.92%)
Mutual labels:  storage
Jsstore
A complete IndexedDB wrapper with SQL like syntax.
Stars: ✭ 430 (-24.16%)
Mutual labels:  storage
Plumhound
Bloodhound for Blue and Purple Teams
Stars: ✭ 452 (-20.28%)
Mutual labels:  directory
S5cmd
Parallel S3 and local filesystem execution tool.
Stars: ✭ 565 (-0.35%)
Mutual labels:  storage
Opendirectorydownloader
Indexes open directories
Stars: ✭ 502 (-11.46%)
Mutual labels:  directory

Quickly create, use and delete temporary directories

Latest Version on Packagist Tests Software License Total Downloads

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 directory 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();

Support us

We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.

We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.

Installation

You can install the package via composer:

composer require spatie/temporary-directory

Usage

Creating a temporary directory

To create a temporary directory simply call the create method on a TemporaryDirectory object. By default the temporary directory will be created in a timestamped directory in your system's temporary directory (usually /tmp).

(new TemporaryDirectory())->create();

Naming your temporary directory

If you want to use a custom name for your temporary directory instead of the timestamp call the name method with a string $name argument before the create method.

(new TemporaryDirectory())
   ->name($name)
   ->create();

By default an exception will be thrown if a directory already exists with the given argument. You can override this behaviour by calling the force method in combination with the name method.

(new TemporaryDirectory())
   ->name($name)
   ->force()
   ->create();

Setting a custom location for a temporary directory

You can set a custom location in which your temporary directory will be created by passing a string $location argument to the TemporaryDirectory constructor.

(new TemporaryDirectory($location))
   ->create();

Optionally you can call the location method with a $location argument.

(new TemporaryDirectory())
   ->location($location)
   ->create();

Determining paths within the temporary directory

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

Emptying a temporary directory

Use the empty method to delete all the files inside the temporary directory.

$temporaryDirectory->empty();

Deleting a temporary directory

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();

Changelog

Please see CHANGELOG for more information on what has changed recently.

Testing

composer test

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Postcardware

You're free to use this package, 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, Kruikstraat 22, 2018 Antwerp, Belgium.

We publish all received postcards on our company website.

Credits

License

The MIT License (MIT). Please see License File for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].