diff --git a/core/modules/migrate_drupal/src/Plugin/migrate/load/LoadEntity.php b/core/modules/migrate_drupal/src/Plugin/migrate/load/LoadEntity.php
index adbd919..754691f 100644
--- a/core/modules/migrate_drupal/src/Plugin/migrate/load/LoadEntity.php
+++ b/core/modules/migrate_drupal/src/Plugin/migrate/load/LoadEntity.php
@@ -101,6 +101,12 @@ public function loadMultiple(EntityStorageInterface $storage, array $sub_ids = N
                 ],
               ];
             }
+            elseif ($data['type'] === 'filefield') {
+              $migration->process[$field_name] = [
+                'plugin' => 'd6_cck_file',
+                'source' => $field_name,
+              ];
+            }
             else {
               $migration->process[$field_name] = $field_name;
             }
diff --git a/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/CckFile.php b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/CckFile.php
index e69de29..3d719ad 100644
--- a/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/CckFile.php
+++ b/core/modules/migrate_drupal/src/Plugin/migrate/process/d6/CckFile.php
@@ -0,0 +1,38 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\migrate_drupal\Plugin\migrate\process\d6\CckFile.
+ */
+
+namespace Drupal\migrate_drupal\Plugin\migrate\process\d6;
+
+use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
+use Drupal\migrate\MigrateExecutable;
+use Drupal\migrate\Row;
+use Drupal\migrate\Plugin\migrate\process\Route;
+
+/**
+ * @MigrateProcessPlugin(
+ *   id = "d6_cck_file"
+ * )
+ */
+class CckFile extends Route implements ContainerFactoryPluginInterface {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function transform($value, MigrateExecutable $migrate_executable, Row $row, $destination_property) {
+    list($fid, $list, $data) = $value;
+
+    $options = unserialize($data);
+    $file = [
+      'fid' => $fid,
+      'display' => TRUE,
+      'description' => isset($options['description']) ? $options['description'] : '',
+    ];
+
+    return $file;
+  }
+
+}
