diff --git a/core/modules/media/config/schema/media.schema.yml b/core/modules/media/config/schema/media.schema.yml
index 0b76811cfd7c7b23efa9234fed84e9c9c16c653a..b326f9b9258e23363281d82f38ac1cc5c7c99e54 100644
--- a/core/modules/media/config/schema/media.schema.yml
+++ b/core/modules/media/config/schema/media.schema.yml
@@ -36,6 +36,10 @@ media.type.*:
       sequence:
         type: string
 
+media.handler.file:
+  type: media.handler.field_aware
+  label: 'File handler configuration'
+
 action.configuration.media_delete_action:
   type: action_configuration_default
   label: 'Delete media configuration'
diff --git a/core/modules/media/src/Plugin/media/Handler/File.php b/core/modules/media/src/Plugin/media/Handler/File.php
new file mode 100644
index 0000000000000000000000000000000000000000..bec4301c216cc0fc99dc225b35f34dc129ec3003
--- /dev/null
+++ b/core/modules/media/src/Plugin/media/Handler/File.php
@@ -0,0 +1,110 @@
+<?php
+
+namespace Drupal\media\Plugin\media\Handler;
+
+use Drupal\media\MediaInterface;
+use Drupal\media\MediaHandlerBase;
+
+/**
+ * Provides the media handler plugin for Files.
+ *
+ * @MediaHandler(
+ *   id = "file",
+ *   label = @Translation("File"),
+ *   description = @Translation("Provides business logic and metadata for local files and documents."),
+ *   allowed_field_types = {"file"},
+ * )
+ */
+class File extends MediaHandlerBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getProvidedFields() {
+    return [
+      'mime' => $this->t('MIME type'),
+      'size' => $this->t('Size'),
+    ];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getField(MediaInterface $media, $name) {
+    $file = $this->getSourceFieldValue($media);
+
+    switch ($name) {
+      case 'mime':
+        return $file->getMimeType() ?: FALSE;
+
+      case 'size':
+        $size = $file->getSize();
+        return is_numeric($size) ? $size : FALSE;
+    }
+
+    return FALSE;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getThumbnail(MediaInterface $media) {
+    $file = $this->getSourceFieldValue($media);
+    $icon_base = $this->configFactory->get('media.settings')->get('icon_base');
+    $thumbnail = FALSE;
+
+    // We try to magically use the most specific icon present in the $icon_base
+    // directory, based on the mime information. For instance, if an icon file
+    // named "pdf.png" is present, it will be used if the file matches this
+    // mime type.
+    if ($file) {
+      $mimetype = $file->getMimeType();
+      $mimetype = explode('/', $mimetype);
+      $thumbnail = $icon_base . "/{$mimetype[0]}--{$mimetype[1]}.png";
+
+      if (!is_file($thumbnail)) {
+        $thumbnail = $icon_base . "/{$mimetype[1]}.png";
+      }
+    }
+
+    if (!is_file($thumbnail)) {
+      $thumbnail = $icon_base . '/generic.png';
+    }
+
+    return $thumbnail;
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getDefaultName(MediaInterface $media) {
+    // The default name will be the filename of the source_field, if present.
+    $file = $this->getSourceFieldValue($media);
+    return $file->getFilename();
+  }
+
+  /**
+   * Get source field file entity.
+   *
+   * @param \Drupal\media\MediaInterface $media
+   *   The media entity.
+   *
+   * @return \Drupal\file\FileInterface
+   *   The file entity present in the source field.
+   */
+  protected function getSourceFieldValue(MediaInterface $media) {
+    $source_field = $this->configuration['source_field'];
+
+    if (empty($source_field)) {
+      throw new \RuntimeException('Source field for media file handler is not defined.');
+    }
+
+    $file = $media->get($source_field)->entity;
+    if (empty($file)) {
+      throw new \RuntimeException('The source field does not contain a file entity.');
+    }
+
+    return $file;
+  }
+
+}
diff --git a/core/modules/media/tests/src/FunctionalJavascript/FileTest.php b/core/modules/media/tests/src/FunctionalJavascript/FileTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..0e4e08c35f0e30c8d3ccefe1e8fd016197aaa3b8
--- /dev/null
+++ b/core/modules/media/tests/src/FunctionalJavascript/FileTest.php
@@ -0,0 +1,50 @@
+<?php
+
+namespace Drupal\Tests\media\FunctionalJavascript;
+
+use Drupal\media\Entity\Media;
+
+/**
+ * Tests the file handler plugin.
+ *
+ * @group media
+ */
+class FileTest extends MediaHandlerTestBase {
+
+  /**
+   * Tests the file handler.
+   */
+  public function testFileHandler() {
+    $session = $this->getSession();
+    $page = $session->getPage();
+    $assert_session = $this->assertSession();
+
+    // We rely on an automatic source field being created at this point.
+    // @see MediaTypeBase::getSourceFieldName().
+    $source_field_name = 'field_media_file';
+    $bundle_name = strtolower($this->randomMachineName(12));
+    $provided_fields = ['mime', 'size'];
+    $type = $this->createMediaTypeTest($bundle_name, 'file', $provided_fields);
+    \Drupal::service('entity_field.manager')->clearCachedFieldDefinitions();
+    // Adjust the allowed extensions on the source field.
+    $this->drupalGet("admin/structure/media/manage/$bundle_name/fields/media.$bundle_name.$source_field_name");
+    $page->fillField('settings[file_extensions]', 'txt');
+    $page->pressButton('Save settings');
+    // Hide the media name to test default name generation.
+    $this->hideMediaField('name', $bundle_name);
+    // Create a media item.
+    $this->drupalGet("media/add/$bundle_name");
+    $page->attachFileToField('files[' . $source_field_name . '_0]', \Drupal::root() . '/sites/README.txt');
+    $assert_session->assertWaitOnAjaxRequest();
+    $page->pressButton('Save and publish');
+
+    $assert_session->addressEquals('media/1');
+    // Make sure the thumbnail shows up.
+    $assert_session->elementAttributeContains('css', '.image-style-thumbnail', 'src', 'generic.png');
+    // Load the media and check its default name.
+    $media = Media::load(1);
+    $this->assertEquals('README.txt', $media->label());
+
+  }
+
+}
diff --git a/core/modules/media/tests/src/FunctionalJavascript/MediaHandlerTestBase.php b/core/modules/media/tests/src/FunctionalJavascript/MediaHandlerTestBase.php
new file mode 100644
index 0000000000000000000000000000000000000000..911f33905d922e3a60909f97076353de6226693c
--- /dev/null
+++ b/core/modules/media/tests/src/FunctionalJavascript/MediaHandlerTestBase.php
@@ -0,0 +1,96 @@
+<?php
+
+namespace Drupal\Tests\media\FunctionalJavascript;
+
+use Drupal\media\Entity\MediaType;
+
+/**
+ * A base test class for plugin types.
+ */
+abstract class MediaHandlerTestBase extends MediaJavascriptTestBase {
+
+  /**
+   * Hide a component from the default form display config.
+   *
+   * @param string $field_name
+   *   The field name.
+   * @param string $type_name
+   *   The media type machine name.
+   */
+  protected function hideMediaField($field_name, $type_name) {
+    $form_display = entity_get_form_display('media', $type_name, 'default');
+    $form_display->removeComponent($field_name)->save();
+  }
+
+  /**
+   * Helper to test a generic type (bundle) creation.
+   *
+   * @param string $type_name
+   *   The type machine name.
+   * @param string $type_id
+   *   The bundle type ID.
+   * @param array $provided_fields
+   *   (optional) An array of field machine names this type provides.
+   *
+   * @return \Drupal\media\MediaTypeInterface
+   *   The type created.
+   */
+  public function createMediaTypeTest($type_name, $type_id, array $provided_fields = []) {
+    $session = $this->getSession();
+    $page = $session->getPage();
+    $assert_session = $this->assertSession();
+
+    $this->drupalGet('admin/structure/media/add');
+    $page->fillField('label', $type_name);
+    $this->assertJsCondition("jQuery('.machine-name-value').text() === '$type_name'");
+
+    // Make sure the type is available.
+    $assert_session->optionExists('handler', $type_id);
+    $page->selectFieldOption('handler', $type_id);
+    $assert_session->assertWaitOnAjaxRequest();
+
+    // Make sure the provided fields are visible on the form.
+    if (!empty($provided_fields)) {
+      foreach ($provided_fields as $provided_field) {
+        $assert_session->selectExists("field_mapping[$provided_field]");
+      }
+    }
+
+    // Save the page to create the type.
+    $page->pressButton('Save');
+    $assert_session->pageTextContains('The media type ' . $type_name . ' has been added.');
+    $this->drupalGet('admin/structure/media');
+    $assert_session->pageTextContains($type_name);
+
+    // Bundle definitions are statically cached in the context of the test, we
+    // need to make sure we have updated information before proceeding with the
+    // actions on the UI.
+    \Drupal::service('entity_type.bundle.info')->clearCachedBundles();
+
+    return MediaType::load($type_name);
+  }
+
+  /**
+   * Helper to assert presence/absence of select options.
+   *
+   * @param string $select
+   *   One of id|name|label|value for the select field.
+   * @param array $expected_options
+   *   An indexed array of expected option names.
+   * @param array $non_expected_options
+   *   An indexed array of non-expected option names.
+   *
+   * @see \Drupal\Tests\WebAssert::optionExists()
+   * @see \Drupal\Tests\WebAssert::optionNotExists()
+   */
+  protected function assertSelectOptions($select, $expected_options = [], $non_expected_options = []) {
+    $assert_session = $this->assertSession();
+    foreach ($expected_options as $expected_option) {
+      $assert_session->optionExists($select, $expected_option);
+    }
+    foreach ($non_expected_options as $non_expected_option) {
+      $assert_session->optionNotExists($select, $non_expected_option);
+    }
+  }
+
+}
diff --git a/core/profiles/standard/config/optional/field.field.media.file.field_media_file.yml b/core/profiles/standard/config/optional/field.field.media.file.field_media_file.yml
new file mode 100644
index 0000000000000000000000000000000000000000..acf82c70d7804c729d83bc4260ef874fe76d99f1
--- /dev/null
+++ b/core/profiles/standard/config/optional/field.field.media.file.field_media_file.yml
@@ -0,0 +1,29 @@
+langcode: en
+status: true
+dependencies:
+  config:
+    - field.storage.media.field_media_file
+    - media.bundle.file
+  module:
+    - file
+  enforced:
+    module:
+      - media
+id: media.file.field_media_file
+field_name: field_media_file
+entity_type: media
+bundle: file
+label: File
+description: ''
+required: true
+translatable: true
+default_value: {  }
+default_value_callback: ''
+settings:
+  file_directory: '[date:custom:Y]-[date:custom:m]'
+  file_extensions: 'txt pdf'
+  max_filesize: ''
+  handler: 'default:file'
+  handler_settings: {  }
+  description_field: false
+field_type: file
diff --git a/core/profiles/standard/config/optional/field.storage.media.field_media_file.yml b/core/profiles/standard/config/optional/field.storage.media.field_media_file.yml
new file mode 100644
index 0000000000000000000000000000000000000000..a830fa89c4f32650c925b2ba026703e49d086345
--- /dev/null
+++ b/core/profiles/standard/config/optional/field.storage.media.field_media_file.yml
@@ -0,0 +1,25 @@
+langcode: en
+status: true
+dependencies:
+  module:
+    - file
+    - media
+  enforced:
+    module:
+      - media
+id: media.field_media_file
+field_name: field_media_file
+entity_type: media
+type: file
+settings:
+  uri_scheme: public
+  target_type: file
+  display_field: false
+  display_default: false
+module: file
+locked: false
+cardinality: 1
+translatable: true
+indexes: { }
+persist_with_no_fields: false
+custom_storage: false
diff --git a/core/profiles/standard/config/optional/media.type.file.yml b/core/profiles/standard/config/optional/media.type.file.yml
new file mode 100644
index 0000000000000000000000000000000000000000..ec38e0fd7ecf5d34a4b6efc1278f1fe555c25117
--- /dev/null
+++ b/core/profiles/standard/config/optional/media.type.file.yml
@@ -0,0 +1,14 @@
+langcode: en
+status: true
+dependencies:
+  module:
+    - media
+id: file
+label: File
+description: 'Use the "File" media type for uploading local files.'
+handler: file
+queue_thumbnail_downloads: false
+new_revision: false
+handler_configuration:
+  source_field: field_media_file
+field_map: { }
