Saved Bookmarks
| 1. |
Solve : how to make file splitter?? |
|
Answer» hi friends, hi friends, you need a a better language that KNOWS how to read files and cater for number of bytes read. A vbscript snippet Code: [Select] Dim fso, f, MSG Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.OpenTextFile("c:\testfile.txt", ForReading) ReadTextFileTest = f.Read(10) the example above reads in 10 characters. You can do a loop to read in the rest, then write them out to INDIVIDUAL files. is it not possible using dos shell script? |
|