Search for files

  1. Search 7.x for files
  2. Search 9.5.x for files
  3. Search 10.3.x for files
  4. Search 11.x for files
  5. Other projects
Title Object type File name Summary
FileSystem::$streamWrapperManager property core/lib/Drupal/Core/File/FileSystem.php The stream wrapper manager.
FileSystem::basename function core/lib/Drupal/Core/File/FileSystem.php Gets the filename from a given path.
FileSystem::chmod function core/lib/Drupal/Core/File/FileSystem.php Sets the permissions on a file or directory.
FileSystem::CHMOD_DIRECTORY constant core/lib/Drupal/Core/File/FileSystem.php Default mode for new directories. See self::chmod().
FileSystem::CHMOD_FILE constant core/lib/Drupal/Core/File/FileSystem.php Default mode for new files. See self::chmod().
FileSystem::copy function core/lib/Drupal/Core/File/FileSystem.php Copies a file to a new location without invoking the file API.
FileSystem::createFilename function core/lib/Drupal/Core/File/FileSystem.php Creates a full file path from a directory and filename.
FileSystem::delete function core/lib/Drupal/Core/File/FileSystem.php Deletes a file without database changes or hook invocations.
FileSystem::deleteRecursive function core/lib/Drupal/Core/File/FileSystem.php Deletes all files and directories in the specified filepath recursively.
FileSystem::dirname function core/lib/Drupal/Core/File/FileSystem.php Gets the name of the directory from a given path.
FileSystem::doScanDirectory function core/lib/Drupal/Core/File/FileSystem.php Internal function to handle directory scanning with recursion.
FileSystem::getDestinationFilename function core/lib/Drupal/Core/File/FileSystem.php Determines the destination path for a file.
FileSystem::getOsTemporaryDirectory function core/lib/Drupal/Component/FileSystem/FileSystem.php Discovers a writable system-appropriate temporary directory.
FileSystem::getTempDirectory function core/lib/Drupal/Core/File/FileSystem.php Gets the path of the configured temporary directory.
FileSystem::mkdir function core/lib/Drupal/Core/File/FileSystem.php Creates a directory, optionally creating missing components in the path to
the directory.
FileSystem::mkdirCall function core/lib/Drupal/Core/File/FileSystem.php Helper function. Ensures we don't pass a NULL as a context resource to
mkdir().
FileSystem::move function core/lib/Drupal/Core/File/FileSystem.php Moves a file to a new location without database changes or hook invocation.
FileSystem::moveUploadedFile function core/lib/Drupal/Core/File/FileSystem.php Moves an uploaded file to a new location.
FileSystem::prepareDestination function core/lib/Drupal/Core/File/FileSystem.php Prepares the destination for a file copy or move operation.
FileSystem::prepareDirectory function core/lib/Drupal/Core/File/FileSystem.php Checks that the directory exists and is writable.
FileSystem::realpath function core/lib/Drupal/Core/File/FileSystem.php Resolves the absolute filepath of a local URI or filepath.
FileSystem::rmdir function core/lib/Drupal/Core/File/FileSystem.php Removes a directory.
FileSystem::saveData function core/lib/Drupal/Core/File/FileSystem.php Saves a file to the specified destination without invoking file API.
FileSystem::scanDirectory function core/lib/Drupal/Core/File/FileSystem.php Finds all files that match a given mask in a given directory.
FileSystem::tempnam function core/lib/Drupal/Core/File/FileSystem.php Creates a file with a unique filename in the specified directory.
FileSystem::unlink function core/lib/Drupal/Core/File/FileSystem.php Deletes a file.
FileSystem::uriScheme function core/lib/Drupal/Core/File/FileSystem.php Returns the scheme of a URI (e.g. a stream).
FileSystem::validScheme function core/lib/Drupal/Core/File/FileSystem.php Checks that the scheme of a stream URI is valid.
FileSystem::__construct function core/lib/Drupal/Core/File/FileSystem.php Constructs a new FileSystem.
FileSystemDeprecationTest class core/tests/Drupal/KernelTests/Core/File/FileSystemDeprecationTest.php Tests deprecations in file.inc.
FileSystemDeprecationTest.php file core/tests/Drupal/KernelTests/Core/File/FileSystemDeprecationTest.php
FileSystemDeprecationTest::$fileSystem property core/tests/Drupal/KernelTests/Core/File/FileSystemDeprecationTest.php The file system service.
FileSystemDeprecationTest::$modules property core/tests/Drupal/KernelTests/Core/File/FileSystemDeprecationTest.php Modules to enable.
FileSystemDeprecationTest::providerTestUriScheme function core/tests/Drupal/KernelTests/Core/File/FileSystemDeprecationTest.php
FileSystemDeprecationTest::setUp function core/tests/Drupal/KernelTests/Core/File/FileSystemDeprecationTest.php
FileSystemDeprecationTest::testDeprecatedDefaultScheme function core/tests/Drupal/KernelTests/Core/File/FileSystemDeprecationTest.php @expectedDeprecation file_default_scheme() is deprecated in drupal:8.8.0. It will be removed from drupal:9.0.0. Use \Drupal::config('system.file')->get('default_scheme') instead. See https://www.drupal.org/node/3049030
FileSystemDeprecationTest::testDeprecatedDirectoryOsTemp function core/tests/Drupal/KernelTests/Core/File/FileSystemDeprecationTest.php @expectedDeprecation file_directory_os_temp() is deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. Use \Drupal\Component\FileSystem\FileSystem::getOsTemporaryDirectory() instead. See https://www.drupal.org/node/2418133
FileSystemDeprecationTest::testDeprecatedDrupalBasename function core/tests/Drupal/KernelTests/Core/File/FileSystemDeprecationTest.php @expectedDeprecation drupal_basename() is deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use \Drupal\Core\File\FileSystemInterface::basename(). See https://www.drupal.org/node/2418133.
FileSystemDeprecationTest::testDeprecatedDrupalChmod function core/tests/Drupal/KernelTests/Core/File/FileSystemDeprecationTest.php @expectedDeprecation drupal_chmod() is deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use \Drupal\Core\File\FileSystemInterface::chmod(). See https://www.drupal.org/node/2418133.
FileSystemDeprecationTest::testDeprecatedDrupalDirname function core/tests/Drupal/KernelTests/Core/File/FileSystemDeprecationTest.php @expectedDeprecation drupal_dirname() is deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use \Drupal\Core\File\FileSystemInterface::dirname(). See https://www.drupal.org/node/2418133.
FileSystemDeprecationTest::testDeprecatedDrupalMkdir function core/tests/Drupal/KernelTests/Core/File/FileSystemDeprecationTest.php @expectedDeprecation drupal_mkdir() is deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use \Drupal\Core\File\FileSystemInterface::mkdir(). See https://www.drupal.org/node/2418133.
FileSystemDeprecationTest::testDeprecatedDrupalRmdir function core/tests/Drupal/KernelTests/Core/File/FileSystemDeprecationTest.php @expectedDeprecation drupal_rmdir() is deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use \Drupal\Core\File\FileSystemInterface::rmdir(). See https://www.drupal.org/node/2418133.
FileSystemDeprecationTest::testDeprecatedDrupalTempnam function core/tests/Drupal/KernelTests/Core/File/FileSystemDeprecationTest.php @expectedDeprecation tempnam() is deprecated in Drupal 8.0.0 and will be removed before Drupal 9.0.0. Use \Drupal\Core\File\FileSystemInterface::tempnam(). See https://www.drupal.org/node/2418133.
FileSystemDeprecationTest::testDeprecatedFileCreate function core/tests/Drupal/KernelTests/Core/File/FileSystemDeprecationTest.php @expectedDeprecation file_create_filename() is deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Use \Drupal\Core\File\FileSystemInterface::createFilename(). See https://www.drupal.org/node/3006851.
FileSystemDeprecationTest::testDeprecatedFileDestination function core/tests/Drupal/KernelTests/Core/File/FileSystemDeprecationTest.php @expectedDeprecation file_destination() is deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Use \Drupal\Core\File\FileSystemInterface::getDestinationFilename(). See https://www.drupal.org/node/3006851.
FileSystemDeprecationTest::testDeprecatedFileMoveUploadedFile function core/tests/Drupal/KernelTests/Core/File/FileSystemDeprecationTest.php @expectedDeprecation drupal_move_uploaded_file() is deprecated in Drupal 8.0.x-dev and will be removed before Drupal 9.0.0. Use \Drupal\Core\File\FileSystemInterface::moveUploadedFile(). See https://www.drupal.org/node/2418133.
FileSystemDeprecationTest::testDeprecatedFilePrepareDirectory function core/tests/Drupal/KernelTests/Core/File/FileSystemDeprecationTest.php @expectedDeprecation file_prepare_directory() is deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Use \Drupal\Core\File\FileSystemInterface::prepareDirectory(). See https://www.drupal.org/node/3006851.
FileSystemDeprecationTest::testDeprecatedFileStreamWrapperUriNormalize function core/tests/Drupal/KernelTests/Core/File/FileSystemDeprecationTest.php @expectedDeprecation file_stream_wrapper_uri_normalize() is deprecated in drupal:8.8.0 and will be removed before drupal:9.0.0. Use \Drupal\Core\StreamWrapper\StreamWrapperManagerInterface::normalizeUri() instead. See https://www.drupal.org/node/3035273
FileSystemDeprecationTest::testDeprecatedFileUploadMaxSize function core/tests/Drupal/KernelTests/Core/File/FileSystemDeprecationTest.php @expectedDeprecation file_upload_max_size() is deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Use \Drupal\Component\Utility\Environment::getUploadMaxSize() instead. See https://www.drupal.org/node/3000058.
FileSystemDeprecationTest::testDeprecatedFileUriScheme function core/tests/Drupal/KernelTests/Core/File/FileSystemDeprecationTest.php @expectedDeprecation file_uri_scheme() is deprecated in drupal:8.0.0 and will be removed before drupal:9.0.0. Use \Drupal\Core\StreamWrapper\StreamWrapperManagerInterface::getScheme() instead. See https://www.drupal.org/node/3035273

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.