temporary-directory

A simple class to work with a temporary directory

  • 所有者: spatie/temporary-directory
  • 平台:
  • 許可證: MIT License
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

Quickly create, use and delete temporary directories

Latest Version on Packagist
Software License
Build Status
Quality Score
StyleCI
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();

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 freek@spatie.be 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, Samberstraat 69D, 2060 Antwerp, Belgium.

We publish all received postcards on our company website.

Credits

Support us

Spatie is a webdesign agency based in Antwerp, Belgium. You'll find an overview of all our open source projects on our website.

Does your business depend on our contributions? Reach out and support us on Patreon.
All pledges will be dedicated to allocating workforce on maintenance and new awesome stuff.

License

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

主要指標

概覽
名稱與所有者spatie/temporary-directory
主編程語言PHP
編程語言PHP (語言數: 1)
平台
許可證MIT License
所有者活动
創建於2017-01-30 08:14:51
推送於2025-06-16 13:53:19
最后一次提交
發布數23
最新版本名稱2.3.0 (發布於 )
第一版名稱0.0.1 (發布於 )
用户参与
星數1k
關注者數5
派生數45
提交數211
已啟用問題?
問題數14
打開的問題數0
拉請求數60
打開的拉請求數1
關閉的拉請求數13
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?