/// <param name="relativeLocalFilePath">
 /// this "relativeLocalFilePath" refers to path RE: the ~localFolder~ - this class will cut the file and upload it in 4096kB chunks
 /// </param>
 /// <param name="folder">
 /// use this for the folder pathing
 /// </param>
 /// <param name="domain">
 /// this is for the credentials and the url
 /// </param>
 public void setPath(string relativeLocalFilePath, jsonFolder folder, jsonDomain domain)
 {
     string tmppath = folder.localFolder + relativeLocalFilePath;
     if (File.Exists(tmppath))
     {
         relpath = relativeLocalFilePath;
         myFolder = folder;
         myDomain = domain;
     }
     else
     {
         throw new Exception("classActionType_clientPull.setPath():tmppath \"" + tmppath + "\" does not already exist");
     }
 }
 public void setdomain(jsonDomain domain)
 {
     myDomain = domain;
 }