Saving CSV file to document directory folder

I am writing a registration application that needs to save a CSV file in a document directory folder. I would like to look at the result and see what happens when I open the CSV file in excel. I went to the document directory folder after finding out where it should be stored with this piece of code:

NSLog(@"Info Saved");
NSLog(@"Documents Directory: %@", [[[NSFileManager defaultManager]
                                    URLsForDirectory:NSDocumentDirectory
                                    inDomains:NSUserDomainMask] lastObject]);

      

Here is my code to save the information placed in 11 text fields in the registration form:

- (IBAction)saveFormButton:(id)sender {

// saves text field data in comma separated CSV file format
NSString *formData = [NSString stringWithFormat:@"%@,%@,%@,%@,%@,%@,%@,%@,%@,%@,%@\n",
                      self.nameTextfield.text, self.emailTextfield.text,
                      self.phoneTextfield.text, self.termTextfield.text,
                      self.schoolTextfield.text, self.graduationTextfield.text,
                      self.gpaTextfield.text, self.degreeTextfield.text,
                      self.interestTextfield.text, self.groupTextfield.text,
                      self.appliedTextfield.text];

// get document directory path
NSString *documentDirectoryPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
                                                    NSUserDomainMask, YES)objectAtIndex:0];

// append results.csv onto doc path
NSString *event = [documentDirectoryPath stringByAppendingString:@"results.csv"];

// creates folder if it does not exist
if (![[NSFileManager defaultManager] fileExistsAtPath:documentDirectoryPath]) {
    [[NSFileManager defaultManager] createFileAtPath:event contents:nil attributes:nil];
}


NSFileHandle *fileHandle = [NSFileHandle fileHandleForUpdatingAtPath:event];
[fileHandle seekToEndOfFile];
[fileHandle writeData:[formData dataUsingEncoding:NSUTF8StringEncoding]];
[fileHandle closeFile];

      

Should I see the file in this specific folder that I connected to?

Thank you for your help,

+3


source to share


2 answers


Here is a more elegant way with less code

 // Content of file
 NSString* str= @"str,hey,so,good";

 // Writing    
 NSString *root = [NSHomeDirectory() stringByAppendingPathComponent:@"file.csv"];
 [str writeToFile:root atomically:YES encoding:NSUTF8StringEncoding error:NULL];

 // Reading
 NSString *string = [[NSString alloc] initWithContentsOfFile:root encoding:NSUTF8StringEncoding error:nil];

 NSLog(@"%@",string);

      



Result:

2015-07-15 15:52:56.267 ObjC[2927:15828] str,hey,so,good

      

+2


source


Change this line:

NSString *event = [documentDirectoryPath stringByAppendingString:@"results.csv"];

      

in

NSString *event = [documentDirectoryPath stringByAppendingPathComponent:@"results.csv"];

      



This will ensure that the path is properly formatted. Also, you seem to be checking if the "documentDirectoryPath" exists before the file is created, not the filename itself. Change:

if (![[NSFileManager defaultManager] fileExistsAtPath:documentDirectoryPath]) {
    [[NSFileManager defaultManager] createFileAtPath:event contents:nil attributes:nil];
}

      

in

if (![[NSFileManager defaultManager] fileExistsAtPath:event]) {
    [[NSFileManager defaultManager] createFileAtPath:event contents:nil attributes:nil];
}

      

+3


source







All Articles