Jump to content

CaptSammy

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

CaptSammy's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I am trying to create a page that when run it does a "dir" on a windows share and finds a filename from the results that starts with ver and end with .txt (the actual page version is part of the filename). I have the parameters in a csv file, seemed easier than xml. Not having any luck, can someone shed some light and help me get this script running? csv file: 'S01','Server1',"machine1","\\\\machine1\\iis$\\wwwroot\\" 'S02','Server2',"machine2","\\\\machine2\\iis$\\wwwroot\\" 'S03','Server3',"machine3","\\\\machine3\\iis$\\wwwroot\\" php file: <?php #Script - MyVerPage.php // Create a multidimensional array from an external csv file $CSVinput = fopen("MyCSV.csv", "r"); $MyArray = array(); $inputKEY=0; while (list($shortID, $longID, $server, $rootshare) = fgetcsv($CSVinput, 1000, ",")) { $MyArray[$inputKEY] = array(0 => $shortID, 1 => $longID, 2 => $server, 3 => $rootshare); $inputKEY++; } $i=count($MyArray); while ($i) {   $chkcmd = $MyArray[$i][3];   $d = dir($chkcmd);   #find the filename from the dir list that starts with "ver" with extension ".txt" and assign to $result   $MyArray[$i][4] = $result;   echo $MyArray[$i][4];   $i-- } ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.