gkpoll

Untitled

May 11th, 2020
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.48 KB | None | 0 0
  1. string IDNoStorage;
  2.  
  3. using (var ms = new MemoryStream())
  4. {
  5.     TextWriter tw = new StreamWriter(ms);
  6.  
  7.  
  8.     tw.Write("blabla");
  9.  
  10.     tw.Flush();
  11.     ms.Position = 0;
  12.  
  13.  
  14.     string nomeArquivoTxt = "itensDaEdicao" + DateTime.Now.ToShortDateString() + ".txt";
  15.  
  16.     FileMetadata oFileMetaData = StorageManager.StoreFile(nomeArquivoTxt, "Sat.Dtec.Ferramentas", ms);
  17.  
  18.     IDNoStorage = oFileMetaData.Id;
  19. }
  20.  
  21. // no final desse código, IDNoStorage será o ID no Storage
Add Comment
Please, Sign In to add comment