vote up 0 vote down star

Do I have to read the files and iterate manually? I'd like to be able to change between LF and CRLF.

flag

59% accept rate
1  
Can you explain, what you are trying to do? Do you want to change the files on disk or do you want to change line endings when you read the files only? – nschmidt Oct 28 at 16:40
I'd prefer to change the files on disk, in this case. – zekel Oct 28 at 16:53

2 Answers

vote up 0 vote down

You can use the "tr" command in the terminal.

link|flag
No good way to do that in Cocoa without using NSTask to run a command? – zekel Oct 28 at 17:07
vote up 0 vote down

I'm sure there are more memory-efficient ways, but this might do the job for you:

NSStringEncoding usedEncoding;
NSMutableString *fileContents = [[NSMutableString alloc] initWithContentsOfFile:pathToFile usedEncoding:&usedEncoding error:nil];

// Normally you'd pass in an error and do the checking thing.

[fileContents replaceOccurrencesOfString:@"\n" withString:@"\r\n" options:NSLiteralSearch range:NSMakeRange(0, [fileContents length])];
// The other direction: [fileContents replaceOccurrencesOfString:@"\r\n" withString:@"\n" options:NSLiteralSearch range:NSMakeRange(0, [fileContents length])];

// Assumes you want to overwrite the file; again, normally you'd check for errors and such.
[fileContents writeToFile:filePath atomically:YES encoding:usedEncoding error:nil];
[fileContents release];

pathToFile is obviously the path to the file; substitute the initWithContentsOfURL:.../writeToURL:... versions if you prefer.

link|flag
1  
I just realized that this will cause issues if you read in a file that already uses CRLF line-endings; hopefully you already know this ahead of time/are detecting this. >_< – Wevah Oct 28 at 18:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.