Example #1
0
 /// <summary>
 /// Grab the jobtracker system directory path where
 /// job-specific files will  be placed.
 /// </summary>
 /// <returns>the system directory where job-specific files are to be placed.</returns>
 /// <exception cref="System.IO.IOException"/>
 /// <exception cref="System.Exception"/>
 public virtual Path GetSystemDir()
 {
     if (sysDir == null)
     {
         sysDir = new Path(client.GetSystemDir());
     }
     return(sysDir);
 }