@@ -119,7 +119,9 @@ private function pipeListing(string $location, bool $deep, iterable $listing): G
 
     public function move(string $source, string $destination, array $config = []): void
     {
-        $config = $this->config->extend($config);
+        $config = $this->config
+            ->extend([Config::OPTION_VISIBILITY => null])
+            ->extend($config);
         $from = $this->pathNormalizer->normalizePath($source);
         $to = $this->pathNormalizer->normalizePath($destination);
 
@@ -138,7 +140,9 @@ public function move(string $source, string $destination, array $config = []): v
 
     public function copy(string $source, string $destination, array $config = []): void
     {
-        $config = $this->config->extend($config);
+        $config = $this->config
+            ->extend([Config::OPTION_VISIBILITY => null])
+            ->extend($config);
         $from = $this->pathNormalizer->normalizePath($source);
         $to = $this->pathNormalizer->normalizePath($destination);
 