Summary: I have an ISO that is 9 gb I need to split it in half so my idea was to some how copy half the file and then export it as a new file and do the same t...
Summary: First of all replace the Split.bat code with the following revised version that is more efficient and has full check of the parameter file: :: SPLIT....
Summary: if you have Python on windows, here's an alternative solution import os,glob,sys directory = sys.argv[1] destination=sys.argv[2] os.chdir(directory) ...
Summary: @M2, great batch code, but i doubt OP understands assembly or how to use debug enough to understand your code. Furthermore, its hard to maintain. A re...
Summary: On Linux? If it's not too locked down, just do this: @files = split(/\n/, `find $basedir -name $search -type $type 2>/dev/null`); $type is: b for bloc...
Summary: I have several gigabyte files split in rars named File.4.DATEIN.CD1.part1.rar File.4.DATEIN.CD1.part2.rar File.4.DATEIN.CD1.part3.rar File.4.DATEIN....
Summary: Last but not least, file splitting the output from dirRemoteLog.txt file (which basically contains the list of files stored remotely). Split occurs fr...
Summary: The game file is about 7Gb. I use Nero 7 to burn the disc. I want to split in such a way that when I run the .exe extension, it askes me for rest o...
Summary: I am VERY VERY new to batch programming/ batch files. I have a problem here where I need to count the number of lines/records in a text file. If the n...
Summary: I have written a code to play a media file in MFC VC++, but i'm not able to split the media file and storing it. I have used MCIWnd class functions ...
Summary: Hello guys, i want to do a batch file to split a text file into multiple txt files every time there is a given word inside the txt. for example: (con...
Summary: I did a similar script like this to upload files from forms. It relied heavily on regular expressions, which is what I would use here. If you want t...
Summary: Hi, I am trying to automate a series of FTP commands so that i can hand a job over to someone not technically minded! These are the FTP commands I am...
Summary: hello, sorry, im pretty handy with batch files, but to tell ya the truth, i dont pay attention to use all thet %1 stuff, except when i make a menu lik...
Summary: Hi. I designed and developed a Microsoft Access 2000 database and have it networked for a company that has 10 clients and 1 server running Windows 200...
Summary: Hi, I need to be able to take a text file set up like this # name1 xxxxxx xxxx xxx # name2 yyyy yy yyyyyyyy # etc and create new text files called nam...
Summary: You have to redistribute the exe. if you split the program up into components, however, you can make changes to a component and only "patch" that (me...
Summary: Ok, this is making me pull my hair out, and i am sure its going to be something very silly that i have over looked. I am doing a dir of a directory o...
Summary: I posted before reading your last message. Excluding files by extentsion would be similar. Create an exclusion list of extensions excludedFiles = ".m...
Summary: Hi. Sinve I`m not familiar with all features of Perl`s regular expressions, I often do things in a different way. Here is my way to do what u`ve asked...
Summary: I don't know VB much, here's one in Python [code] for line in open("file"): line = line.split(",") print line[0][0:9],line[0][9:]+",",','.join...
Summary: Hi I'm sending files to a friend that have been split using a program and they are joined back together by a batch script using copy /b The thing is...
Summary: Open letter to the developer and supporters of free p2p technologies. I am developing a search engine spidering www for ogg and mp3 files, at the time...
Summary: This is an example of how you can split the filename into several parts using "-" as a delimiter. This batch script only works in Xp (perhaps win2k?) ...
Summary: The incoming data email should be saved in batches. It is then read and the data split into a data file to be saved and the return e-mail list. Your ...