function FileDeleteTest::testNormal
Delete a normal file.
File
- 
              core/
tests/ Drupal/ KernelTests/ Core/ File/ FileDeleteTest.php, line 19  
Class
- FileDeleteTest
 - Tests the unmanaged file delete function.
 
Namespace
Drupal\KernelTests\Core\FileCode
public function testNormal() : void {
  // Create a file for testing
  $uri = $this->createUri();
  // Delete a regular file
  $this->assertTrue(\Drupal::service('file_system')->delete($uri), 'Deleted worked.');
  $this->assertFileDoesNotExist($uri);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.