mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-05 15:59:03 +00:00
24 lines
1018 B
Mathematica
24 lines
1018 B
Mathematica
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
int main (int argc, const char * argv[]) {
|
||
|
if(argc == 1){
|
||
|
NSLog(@"A file path to send to trash is needed");
|
||
|
return 1;
|
||
|
}
|
||
|
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
||
|
NSString *filepath = [NSString stringWithCString:argv[1] encoding:NSUTF8StringEncoding];
|
||
|
NSLog(@"%@",filepath);
|
||
|
NSMutableArray *split = [NSMutableArray arrayWithArray:[filepath componentsSeparatedByString:@"/"]];
|
||
|
NSString *filename = [split lastObject];
|
||
|
[split removeLastObject];
|
||
|
NSString *dirpath = [split componentsJoinedByString:@"/"];
|
||
|
int result;
|
||
|
[[NSWorkspace sharedWorkspace] performFileOperation:NSWorkspaceRecycleOperation
|
||
|
source:dirpath
|
||
|
destination:@""
|
||
|
files:[NSArray arrayWithObject:filename]
|
||
|
tag:&result];
|
||
|
[pool drain];
|
||
|
return result;
|
||
|
}
|