listSkippedFiles

Returns a list of files that are in the FILES_SKIPPED state.

Request

<listSkippedFiles>  
   <ID/>
   <cookie/>
</listSkippedFiles>

Reply

<listSkippedFiles> 
   <result value=" ">
      <description/>
   </result>
   <ID/>
   <cookie/>
   <fileName/>
   <fileName/>
</listSkippedFiles>

Elements

ID

Specifies the operation ID of the move or split job that is in the FILES_SKIPPED state.

cookie

Specifies the current value of the last request. The initial value is 0. Keep issuing the request with the previous returned value to retrieve all files.

result

Specifies an error value or 0 (for no error).

description

Specifies a text description of the result.

Example

A nssRequest packet to expand a traditional volume is as follows:

<nssRequest>     
   <volMN>
      <listSkippedFiles>  
         <ID>12345</ID>
         <cookie>0</cookie>
      </listSkippedFiles>
   </volMN>
</nssRequest>

A nssReply packet to the expand a traditional volume command follows:

<nssReply>     
   <volMN> 
      <listSkippedFiles> 
         <result value=" ">
            <description/>
         </result>
         <ID>12345</ID>
         <cookie>1234</cookie>
         <fileName>VOL1:FOO/BAR.TXT</fileName>
         <fileName>VOL1:FOO/BAR.XYZ</fileName>
      </listSkippedFiles>
   </volume>
</nssReply>