How can i append bytes to a file from a byte array while keeping the file open in metro style app?

الإجابة How can i append bytes to a file from a byte array while keeping the file open in metro style app?

  • 16 April 2012 14:02
     
      Memiliki Kode
    open(file)
    
    for(..){
      byte[] bytes…
      bytes[..]=…
    
    
      appendToFile(file, bytes);
    
      
    }
    close(file);

Semua Balasan