                <?php
//-->-->-->-->-->-->-->-->-->-->-->-->
  $sLibraryPath = '/usr50/home/retrovox/public_html/manage/php-lib';
  include "$sLibraryPath/RETROVOX-CONSTANT-VARIABLES.php";

  $sSourceFileName = $_GET['file'];  
//--<--<--<--<--<--<--<--<--<--<--<--<  
?>


<html>
<head><title>Copy or Rename a File</title></head>

<body bgcolor = 'lightgreen'>
  <?=S-RETROVOX-TITLE-IMAGE-HTML?>
  <center><h2>Copy or Rename a File</h2></center>

  <form  action = "copy-file.php"  method = "get">
  copy<br>
  <input type = "text"  name = "old-name"  value = "<?=$sSourceFileName?>"> to
  <input type = "text"  name = "new-name"  value = "">
  <input type = "submit"  value = "copy">
  </form>

  <form  action = "rename-file.php"  method = "get">
  rename<br>
  <input type = "text"  name = "old-name"  value = "<?=$sSourceFileName?>"> to
  <input type = "text"  name = "new-name"  value = "">
  <input type = "submit"  value = "rename"> [not working yet]
  </form>
  <form  action = "chmod-file.php"  method = "get">
  chmod<br>
  <input type = "text"  name = "file-name"  value = "<?=$sSourceFileName?>"> to
  <input type = "text"  name = "chmod-mode"  value = "0755">
  <input type = "submit"  value = "change permissions">
  </form>
  <br>

</body>
</html>
                