Problem in cut operation in objective c [closed]
i am working on file manager application and i have to perform copy paste and cut file operation. i done the copy paste operation. but how can i do the cut file operation.
The difference between copy and cut is that cut will move the item instead of copying it, so this is what you want to use:
[NSFileManager moveItemAtPath:path1 toPath:path2 error:&error];
精彩评论