Combine Files

  • Thread starter Thread starter shapper
  • Start date Start date
S

shapper

Hello,

I have a few Javascript files which I would like to combine into a
single one to reduce the number of requests.

How can I combine all the files into one single file?
I added all the files path into a IList<String>.

Thanks,
Miguel
 
shapper said:
Hello,

I have a few Javascript files which I would like to combine into a
single one to reduce the number of requests.

How can I combine all the files into one single file?
I added all the files path into a IList<String>.

Too little context. Reading multiple files and writing them each
sequentially to a single new file is trivial. So surely that's not what
you're asking about. Are you trying to deliver the data contained in
several files to some kind of component as a single stream of data?
Something else?

Pete
 
shapper said:
Hello,

I have a few Javascript files which I would like to combine into a
single one to reduce the number of requests.

How can I combine all the files into one single file?
I added all the files path into a IList<String>.

Since I assume you know how to copy and paste, and since what you're
asking amounts to copying and pasting the contents of several files into
one file, I feel like I'm missing what the substance of your question is.
 
Back
Top