summaryrefslogtreecommitdiff
path: root/texmf-dist/doc/latex/thorshammer/system-scripts/standalone/cpquizzes.ps1
blob: 04e5026655959c1209c369819d1356bcf8993572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# This script copies PDFs from the $startLocations to $destPath, but only
# if in a $baseName folder
$baseName="_Thor"
$classPath="C:\Users\dpstory\Desktop\Test Folder\target\myClass"
$destPath="C:\Users\dpstory\Desktop\Test Folder\target\_Thor\grade"
# Strip-and-Trim function
# Remove everything to the left of a comment character, then trim
function Strip-and-Trim {
  param([string]$str)
  $pos=$str.IndexOf("#")
  If($pos -ne -1) {
    $str=$str.substring(0,$pos)
  }
  $str=$str.trim()
  return $str
}
# vars
$startLocations=@($classPath)
Write-Host ""
if(Test-Path -Path ./altclasspaths.txt) {
  get-content ./altclasspaths.txt | %{
    $str= Strip-and-Trim($_)
    if($str) {	  
      Write-Host "Reading alternate path: $str"
      $startLocations+=$str
    }
  }
}
$instrDest="$PWD\fromStudents"
#
# script starts here
#
$currentPath=Convert-Path .
foreach ($startLocation in $startLocations) {
  Set-Location $startLocation
  $numCopied=0
  Write-Host "`nCopying any PDFs files from within a `"$baseName`" subfolder of `
`"$startLocation`" to `
`"$instrDest`""
  Get-ChildItem -Path . -Filter "*.pdf" -Recurse |
  Where-Object { $_.DirectoryName -match $baseName } -OutVariable fileName |
  Copy-Item -Destination $destPath
  if ($fileName.Name -eq $null) {Write-Host "`nNo files to copy"}
  else {
    Write-Host "`nReport:"
    $numCopied=$fileName.Name.Count
    $fileName.Name
  }
  Write-Host @( Get-ChildItem $PWD ).Count "folders examined, $numCopied files copied"
  cd $currentPath
}