iOS about file operations get file size

Source: Internet
Author: User

 Category: Apple IPhone2012-06-28 11:31 4664 people read reviews (0) favorite reports iOS Language Manager Test C

C Language Implementation

#include "Sys/stat.h"

-(Long Long) Filesizeatpath: (nsstring*) filepath{

struct STAT st;
if (Lstat ([FilePath cstringusingencoding:nsutf8stringencoding], &st) = = 0) {
return st.st_size;
}
return 0;
}

Objective-c Language Implementation

-(Long Long) Filesizeatpath: (nsstring*) filepath{

nsfilemanager* manager = [Nsfilemanager Defaultmanager];

if ([manager Fileexistsatpath:filepath]) {

return [[Manager Attributesofitematpath:filepath Error:nil] fileSize];

}

return 0;

}

If we loop the two methods 1000 times, we can find a huge performance gap between them, in my test environment, the results are as follows, the C function is only 5% of the OC method, in this recommendation C language

An empty folder which gets the size of 68k, should be the system file bar, if you know people, welcome message

iOS about file operations get file size

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.