objective c - create, delete folders and cut and copy files -


is there tutorials following:

  • create , delete folders @ main bundle of application
  • remove folders document folder specific folder
  • list folders @ main bundle

any suggestion , please

read nsfilemanager class reference.

you can nsfilemanager instance doing:

nsfilemanager *filemanager = [nsfilemanager defaultmanager]; 

by example can delete file by:

nserror *error; [filemanager removeitematpath:mypath error:&error]; 

see here class reference:
class ref


Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -