Hello @Greg-DB
I am using UploadSessionFinishBatchCheckAsync API in my application.
UploadSessionFinishBatchJobStatus resultstatus = await clientadmin.Files.UploadSessionFinishBatchCheckAsync(jobid);
if (resultstatus.AsComplete != null && resultstatus.AsComplete.Value != null)
{
FileMetadata filemetadata = null;
foreach (var resultEntry in resultstatus.AsComplete.Value.Entries)
{
if (resultEntry != null)
{
//Process FileMetatData
if (resultEntry.AsSuccess != null && resultEntry.AsSuccess.Value != null)
{
filemetadata = resultEntry.AsSuccess.Value;
string path = filemetadata.PathDisplay.
I can I get Path of the result entry that completed successfully.
I need to identify the path of the the result entry that failed.
UploadSessionFinishError finisherror = resultEntry.AsFailure.Value;
finisherror does not give the path of the entry that failed.
finisherror.AsPath.Value also does not provide that to me.
How do I get the Path of the result entry that was a failure ?
Thanks,
Gagan