Skip to content

Instantly share code, notes, and snippets.

@marianomike
Created September 6, 2016 04:15
Show Gist options
  • Save marianomike/6f188663f881c422108206020597ac17 to your computer and use it in GitHub Desktop.
Save marianomike/6f188663f881c422108206020597ac17 to your computer and use it in GitHub Desktop.
//allow xml to be written to the folder
var fileTypes = [NSArray arrayWithObjects:@"xml", nil];
//create select folder window
var panel = [NSOpenPanel openPanel];
[panel setCanChooseDirectories:true];
[panel setCanCreateDirectories:true];
[panel setAllowedFileTypes:fileTypes];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment