|
@@ -1,21 +0,0 @@
|
|
-<?php
|
|
|
|
-use Symfony\Component\Finder\Finder;
|
|
|
|
-require 'vendor/autoload.php';
|
|
|
|
- $finder = new Finder();
|
|
|
|
- $finder->files()->in('tests/_output/debug/');
|
|
|
|
-
|
|
|
|
- foreach ($finder as $file) {
|
|
|
|
- echo "\n Dump the absolute path \n";
|
|
|
|
-
|
|
|
|
-// Dump the absolute path
|
|
|
|
- var_dump($file->getRealPath());
|
|
|
|
- echo "\n Dump the relative path to the file, omitting the filename \n";
|
|
|
|
-
|
|
|
|
-// Dump the relative path to the file, omitting the filename
|
|
|
|
- var_dump($file->getRelativePath());
|
|
|
|
- echo "\n Dump the relative path to the file \n";
|
|
|
|
-
|
|
|
|
-// Dump the relative path to the file
|
|
|
|
- var_dump($file->getRelativePathname());
|
|
|
|
- echo "\n ---- \n";
|
|
|
|
- }
|
|
|