The NSFileManager class enables you to perform various generic file-system operations and insulates an application from the underlying file system.

learn more… | top users | synonyms

0
votes
0answers
9 views

Base64encode in ios

My app wants transfer file to server through http request.I am using ASIHttpRequest API for rest call web services.I get data of file using method " ContentFileAtPath" of NsFileManager and append with ...
1
vote
2answers
24 views

Store and fetch documents in/from app documents folder

Im writing a text editor app and im trying to store a NSString as NSData in files in the documents folder, for example i want to be able to store a file "myText.java". My code work on the Simulator. ...
1
vote
2answers
35 views

Download font .ttf file from web and store on iPhone

Is it possible to download .ttf file from web and store it on iPhone. Then use that for for labels and all other stuff ? Because my client want to control fonts from database and don't want to just ...
0
votes
1answer
33 views

Fast Enumeration Not Working Anymore [closed]

Really simple question I hope, I have this code and it was working and have always worked but now it stopped working. NSArray *keys = [NSArray arrayWithObject:NSURLIsDirectoryKey]; NSFileManager *man ...
0
votes
3answers
58 views

Save image and information about image on iPhone

I retrieve image and its information (origin and some other info) from web. How can I store that on iPhone ? I saw using NSFileManager for storing images, but how can I store image and some other ...
0
votes
2answers
29 views

objective C save file with extension and name to dictonary

I have a browse function where I get the url of a file. Now I want to save the file in the supporting file dictionary so that if the file is move anywhere else it can still access it I have a code ...
0
votes
2answers
41 views

Objective c: Getting error when adding object into NSMutableArray during threading

Here is what I want to achieve. 1. Searching all the files 2. find all .jpg files during the searching 3. save all .jpg file paths into NSMutableArray Here are the codes: Created the ...
1
vote
0answers
62 views

“The operation couldn’t be completed. No such file or directory” when trying to move a file from temp

I'm trying to move a file from the tmp directory, but it's not working as expected. Here's the code i have, and the log: NSFileManager *fileManager = [NSFileManager defaultManager]; NSLog(@"URL: ...
1
vote
1answer
57 views

browse files on iphone for crash logs

I want to make a option like a browse window where the contents of iphone data will be displayed and the user can select any file. I know the nsfileManager can be used but I do not know which paths to ...
0
votes
1answer
56 views

NSSearchPathForDirectoriesInDomains NSUserDomainMask

Using URLConnection I am downloading a file from a url and storing that data to file in documents directory. When I receive response, when the didReceiveResponse: method called, I create file and move ...
0
votes
2answers
46 views

Read from file.Plist Returns Null

Program that Creates multiple Plist's Paths for Different information. But only one path is not working. (i think "writeToFile" is the problem) code: -(NSString *) createPath:(NSString ...
0
votes
0answers
19 views

Create a log extension file add content

I never worked with directories in obj-c before so.. i am a bit lost. What i want to achieve is the following. Simple example: User clicks on a button, a .log file is created with the following data ...
-3
votes
3answers
82 views

Create a Custom Formatted Dictionary Array from CSV File of Data

I've created an iPhone app that has a dictionary array of locations (lat,long,point). I created the array by manually entering each value. myLocationArray = @[ @{ ...
1
vote
1answer
46 views

Is it safe to use NSFileManager API to manipulate files in iCloud?

One can sync files to iCloud by just creating files in the ubiquity container like this: NSFileManager *fileManager = [NSFileManager defaultManager]; NSURL *containerURL = [fileManager ...
0
votes
3answers
75 views

NSFileManager createFileAtPath failing on iPad but works on Simulator

I am trying to write a simple log file for each execution of my app. The logfile name is based on the current time and is stored in the app directory. The code below is what I am trying which works ...
0
votes
3answers
54 views

How to zip a folder using ZipArchive in iphone?

I have a folder in the documents directory that needs to be zipped.I was able to zip regular files but i was not able to zip folders. I referred the following link How to zip folders in iPhone SDK? ...
0
votes
0answers
7 views

Cannot get file to move from my tmp folder, NSError giving Bad_Access?

Getting EXC BAD ACCESS code=2 in the below code and I have no idea why! Sorry to be so vague, I'm kind of new at this but here's the code, please impart your wisdom on me. [fileManager ...
0
votes
1answer
13 views

Remove file - Read only file from device

I create a file with attribute NSFileappendonly, i am thinking this is enough to create readonly file in ios.My problem is try to remove the file from device it returns error.Please anyone help me..
0
votes
0answers
43 views

How to Encrypt the Data in CoreData (ios)?

So i have been playing around with CoreData , trying to encrypt the SQL lit using some online tutorial by Nick Harris Click Here I was performing the same exact steps that was suggested in the ...
0
votes
1answer
27 views

What is the best way to remove logs file Core Data creates, when removing a UIManagedDocument from iCloud?

I would have thought NSFileManagers method of removeItemAtURL:error: would remove the Core Data log files created when using UIManagedDocuments with iCloud. What is the best way to make sure all of ...
0
votes
0answers
32 views

Ive Got a error copying a path URL using NSDirectoryEnumerator How do i fix it?

Ive have a problem with copying a file from one place to another heres the debugger confirming the PathURLs 2013-05-05 04:36:42.535 Directory at file://localhost/Users/eggnishion/Mod/Parts/Part1/ ...
0
votes
0answers
68 views

Copy a directory including all contents and subdirectories

I'm making a Mac app and I'm trying to copy content and the subdirectory of a folder and paste it into another. I've tried everything but only the files are being copied. Is there a way to do that? ...
0
votes
1answer
23 views

replaceItemAtURL won't work if I tried to replace item to a different volume

In my cocoa app I have a feature to move file to certain destination. Let's say user has a file /Users/Josh/Desktop/my.zip. User can move this my.zip file to another destination, and my.zip will be ...
0
votes
3answers
79 views

how to determine how much time needed when calling moveItemAtURL:toURL: or replaceItemAtURL:WithItemAtURL:

When moving file from one place to another, or when replacing file, I always use the methods moveItemAtURL:toURL: or replaceItemAtURL:WithItemAtURL: from NSFileManager. When calling these methods, I ...
0
votes
1answer
20 views

Using NSOpenPanel and copying selected file - Objective-C

I'm trying to create an app that will copy the selected sound file to the app's directory. To do it, I've written the following code : NSOpenPanel* openDlg = [NSOpenPanel openPanel]; [openDlg ...
0
votes
3answers
48 views

Unable to create directory under NSHomeDirectory

I have code which creates a folder under the NSHomeDirectory but it always fails and I cannot see why. It should work but it keeps saying the operation is not permitted. Any ideas? NSURL *homeURL = ...
-1
votes
2answers
54 views

writeToFile:atomically: not saving new plist data

I am using writeToFile:atomically: to update the value of a key in my plist by 1 every time the app is launched. I put this code in viewDidLoad, which reads the string value of the key, gets the ...
0
votes
1answer
41 views

How Can We Close NSFileManager?

In my ios application, I use a lot of images(about one thousand) to show info about products. Then i got an error like this in run time; ImageIO: CGImageRead_mapData 'open' failed error = 24 ...
0
votes
1answer
361 views

How to save data locally in app? [duplicate]

I've been struggling with this for ages now and I really need some good help here. :) I have an app where I'm parsing a quite big JSON into appdelegate's didFinishLaunchingWithOptions. My Model ...
1
vote
1answer
65 views

IOS NSPredicate Not Working

The following example program: although the same url it can not find the url, but the program does not work correctly. NSDirectoryEnumerator *directoryEnumerator = [[NSFileManager defaultManager] ...
0
votes
2answers
94 views

Xcode iOS Generate .png file and save it using NSFileManager

I am making an iOS app and I got a UIImage - I want to compress it into .png file and save it to the app's documents folder - I already have the path and all I need is how to convert the UIImage to ...
2
votes
2answers
123 views

IOS isEqualToString Not Working

The following example program outputs the same, but the program does not work correctly. NSDirectoryEnumerator *directoryEnumerator = [[NSFileManager defaultManager] ...
0
votes
0answers
15 views

Why are several file extensions marked as directories by NSFileManager?

I've been working on a MacOSX application that analyzes your files and folders. While programming I stumbled upon a strange behavior which I can only partly explain by myself and wanted to ask if ...
0
votes
1answer
26 views

iOS - iPhone application documents “No such directory”?

I'm trying to use the method seen in the solution here to delete all the files in the iPhone documents directory for the application I'm writing. I've made some minor changes to the code in the ...
1
vote
2answers
63 views

What is the most reliable way to move or copy large files (> 100 MB) on iOS?

Right now I'm moving very large files in iOS with this method: [fileManager moveItemAtURL:srcURL toURL:toURL error:&error]; This is a method from NSFileManager. Because the files are so large I ...
0
votes
1answer
49 views

Domain=NSCocoaErrorDomain Code=513 only in the simulator

I have an Ipad App, which download different files from the Internet. This App works great when I use the Xcode Simulator. When I try the App on the Ipad, I have an error at the beginning of the App, ...
1
vote
0answers
44 views

Copy directory & subdirectory

I have a folder structure something like this, Folder 1 Folder 11 Folder 111 ... Some files .... Folder 12 Folder 121 ... Some files .... Folder 13 ...
4
votes
2answers
96 views

Core Data vs NSFileManager

The problem: I have been using for some time now my own cache system by using NSFileManager. Normally the data I receive is JSON and I just save the dictionary directly into cache (in the Documents ...
2
votes
4answers
54 views

Remove directory if empty

I'm trying to check if a folder is empty and if so remove it, using the following code: NSArray *folderContents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:theDirectory ...
0
votes
1answer
30 views

iOS Read multiple subdirectories

I'm trying to read directories, and then get the path for the files in those directories. The problem is, I don't know how many subdirectories there may be in a folder, and this code NSString *path; ...
3
votes
1answer
44 views

Showing a progress bar while file is being copied from bundle to documents path [duplicate]

I am making an application where at the time of log in I am coping some file from my main bundle to the applications document's directory. It takes around 3-4 mins. During this period I am showing an ...
1
vote
1answer
44 views

Overwriting the previous file in NSDocumentDirectory

I have used this code to write a string to the same file 10 times . But it is overwriting the previous data for every new launch. I want to append the new data to the old data . [@"one" ...
0
votes
0answers
12 views

Can't retrieve exported CSV file

I'm trying to export a CSV file and mail it afterwards. I have following code: -(IBAction)exportRACI:(id)sender { // Make a CSV file NSString *content = [[NSString ...
0
votes
1answer
32 views

Foundation command line tool, file from arguments

I am creating a command line tool in Xcode using the foundation framework and I am confused on the basics of dealing with file paths. The first argument is to be a file (myfile.txt) or file path ...
0
votes
0answers
55 views

NSData writeToFile VS. NSFileManager createFileAtPath [duplicate]

I need to write some file into my /Documents folder. I have NSData representation of the file so, as I know, I can do this using NSData's method writeDataToFile:atomically: or with NSFileManager ...
0
votes
3answers
63 views

cannot create a file for writing - iOS

So I have encoded a bunch of objects for writing, but I'm having trouble with the file management. I can't seem to open the existing file, or create a new file. I've tried creating an empty file of ...
0
votes
2answers
78 views

Is there any way in NSFileManager to get contents of a file only for some range of bytes

I have some files that are of size 6.7GB, and more (these are video files). I want to get chunks of file data to send to my server, so what I currently do is : contents = [fileManager ...
0
votes
1answer
20 views

Saving file to tree given URL with unknown tree depth

Suppose I have an NSURL that points to my NSDocumentationDirectory but the NSURL has an unknown number of subdirectories in it. When writing to the URL, will have I have to check for existence of the ...
0
votes
0answers
67 views

Copy file to another app sandbox (Jailbreak)

EDIT: it's possible to copy file from my app root to another app sandbox after UUID is changed? I just was do the following example root: "Applications/MyApp.app/Data.txt" Copy Data.txt file to ...
0
votes
1answer
63 views

NSFilemanager fileExistsAtPath always fails

I used NSFilemanager class to check if file exists in my Mac OS folder. fileExistsAtPath always fails...help me to find my mistake. Thanks NSURL* finalImageURL; NSURL* imageURL = [[plistURL ...

1 2 3 4 5 12