Combine Files

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
 
P

Peter Duniho

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
 
H

Harlan Messinger

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Intersection of Lists 5
Combining 2 string arrays 5
Generics 7
C# Library to Combine and Minify CSS and Javascript files 2
Excel to IList<Object> and Back 1
Import / Export CSV. 3
Linq query 3
Word.ApplicationClass 2

Top