Get File stream and changes the content and upload file stream again
//Convert downloaded url to string System.IO.Stream memoryStream = File::UseFileFromURL(DMFStagingWriter::getDownloadURLFromFileId(_uploadedStatement)); memoryStream.Position = 0; System.IO.StreamReader sReader = new System.IO.StreamReader(memoryStream); // Set file contentn string str fileContent = sReader.ReadToEnd(); container conOld = str2con(fileContent,"\r\n"); str newFileContent,contentStr; int i; boo...