消息错误:警告:move_uploaded_file

Why am I getting this warning?

Warning: move_uploaded_file(../documentos/games/banner.jpg): failed to open stream: No such file or directory in C:\xampp\htdocs\admin\gameimage.php on line 11

Warning: move_uploaded_file(): Unable to move 'C:\xampp\tmp\php5AD3.tmp' to '../documentos/games/banner.jpg' in C:\xampp\htdocs\admin\gameimage.php on line 11

The code is:

<?php if ((isset($_POST["enviado"])) && ($_POST["enviado"]=="form1")) { 
  $nome_arquivo = $_FILES['userfile']['name'];
  move_uploaded_file($_FILES['userfile']['tmp_name'], "../documentos/games/".$nome_arquivo);
?>

<script>
  opener.document.fomr1.strImage.value = "<?php echo $nome_arquivo;?>";
  self.close();
</script>

<?php 
  } else {
?>

<form action="gameimage.php" method="post" enctype="multipart/form-data" id="form1">
  <p>
    <input name="userfile" type="file" />
  </p>
  <p>
    <input type="submit" name="button" id="button" value="Upload Imagem" />
  </p>
  <input type="hidden" name="enviado" value="form1" />
</form>

<?php }?>