OC basics: 7.1 7.2 7.3 nsfilehandle and nsfilemanager Learning

Source: Internet
Author: User



Copy an object:
@ Autoreleasepool {nsstring * homepha = nshomedirectory (); nslog (@ "% @", homepha); nsstring * srcpath = [homepha stringbyappendingpathcomponent: @ "ios.pdf"]; nsstring * tagetpath = [homep2 attributes: @ "ios_bak.pdf"]; nsfilemanager * filemanager = [nsfilemanager defaultmanager]; bool success = [filemanager createfileatpath: tagetpath contents: Nil attributes: Nil]; if (SUCCESS) {nslog (@ "created successfully");} nsfilehandle * infile = [nsfilehandle handle: srcpath]; nsfilehandle * OUTFILE = [nsfilehandle filehandleforwritingatpath: tagetpath]; nsdictionary * fileattr = [filemanager attributesofitematpath: srcpath error: Nil]; nsnumber * filesizenum = [fileattr objectforkey: nsfilesize]; bool isend = yes; nsinteger readsize = 0; nsinteger filesize = [filesizenum longvalue]; while (isend) {nsinteger subleng = filesize-readsize; nsdata * Data = nil; If (subleng <500) {isend = no; data = [infile readdatatoendoffile];} else {DATA = [infile readdataoflength: 500]; readsize + = 500; [infile seektofileoffset: readsize];} [OUTFILE writedata: Data];} [OUTFILE closefile];}


OC basics: 7.1 7.2 7.3 nsfilehandle and nsfilemanager Learning

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.