IOS File Manager-Learn notes in Lan Yi education

Source: Internet
Author: User

Get File Manager Lan Yi Education

Nsfilemanager *FM = [Nsfilemanager Defaultmanager];

Copy

[FM copyitematpath:@ "/users/ivan/desktop/a.png" topath:@ "/users/ivan/desktop/copy/a.png" error:nil];

The destination cannot have duplicate names when moving.

[FM moveitematpath:@ "/users/ivan/desktop/a.png" topath:@ "/users/ivan/desktop/copy/a.png" error:nil];

Delete

Nserror *err = nil;

[FM removeitematpath:@ "/users/ivan/desktop/copy/a.png" error:&err];

if (err) {

NSLog (@ "wrong");

//    }

Create a folder

[FM createdirectoryatpath:@ "/users/ivan/desktop/a/b/c/d/e/f" Withintermediatedirectories:yes Attributes:nil Error:nil];

Determine if a file exists

if ([FM fileexistsatpath:@ "/users/ivan/desktop/lany.txt"]) {

NSLog (@ "file exists");

//    }

Determine if a file exists as a folder

BOOL isdir = NO;

if ([FM fileexistsatpath:@/users/ivan/desktop/desktop. zip "Isdirectory:&isdir]) {

NSLog (@ "exists");

//

if (isdir) {

NSLog (@ "is a folder");

}else{

NSLog (@ "not a folder");

//        }

//

//

//

}else{

NSLog (@ "does not exist");

//    }

//

Get all the contents of the folder

Nsarray *filenames = [fm contentsofdirectoryatpath:@ "/users/ivan/desktop" error:nil];

For (NSString *filename in fileNames) {

NSLog (@ "%@", fileName);

}

}

IOS File Manager-Learn notes in Lan Yi education

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.