Tagged Questions
The NSFileManager class enables you to perform various generic file-system operations and insulates an application from the underlying file system.
12
votes
4answers
7k views
Testing file existence using NSURL
Snow Leopard introduced many new methods to use NSURL objects to refer to files, not pathnames or Core Services' FSRefs.
However, there's one task I can't find a URL-based method for: Testing whether ...
11
votes
3answers
6k views
Get directory contents in date modified order
Is there an method to get the contents of a folder in a particular order? I'd like an array of file attribute dictionaries (or just file names) ordered by date modified.
Right now, I'm doing it this ...
9
votes
3answers
5k views
Rename file in Cocoa?
How would I rename a file, keeping the file in the same directory?
I have a string containing a full path to a file, and a string containing a the new filename (and no path), for example:
NSString ...
8
votes
5answers
4k views
Calculate the size of a folder
Just a quick one...
I'm creating a folder to cache images inside Documents with my iPhone App. I want to be able to keep the size of this folder down to 1MB, so I need to to check the size in bytes ...
7
votes
2answers
2k views
iOS - how to detect total available/free disk space on the iPhone/iPad device?
I'm looking for a better way to detect available/free disk space on the iPhone/iPad device programmatically.
Currently I'm using the NSFileManager to detect the disk space. Following is the snippet ...
7
votes
4answers
5k views
NSFileManager delete contents of directory
How do you delete all the contents of a directory without deleting the directory itself? I want to basically empty a folder yet leave it (and the permissions) intact.
6
votes
1answer
501 views
replaceItemAtURL fails without error on iOS but works fine on OSX
I'm implementing a manually-triggered migration process for a CoreData-based app, and after the migration completes successfully, I'm trying to move the migrated DB back over the top of the original ...
5
votes
2answers
4k views
iPhone (iOS): copying files from main bundle to documents folder error
I am trying to copy some files across from my app bundle to the documents directory on first launch. I have the checks in place for first launch, but they're not included in code snippet for clarity. ...
5
votes
1answer
15k views
How to check if a file exists in Documents folder?
I have an application with In-App Purchase, that when the user buy something, download one html file into the Documents folder of my app.
Now I must check if this HTML file exists, so if true, load ...
4
votes
1answer
47 views
Is it possible to search pdf file in whole iphone?
I want to search each and every pdf files on whole iphone.Is it possible in iphone sdk?
I have tried following code but it is giving our own application's files.
NSString *bundleRoot = [[NSBundle ...
4
votes
3answers
259 views
how to read files of a directory?
FM = [NSFileManager defaultManager];
directoryContents = [FM contentsOfDirectoryAtPath:@"/Users/myComputer/Library/Application Support/iPhone ...
4
votes
2answers
3k views
NSFileManager creating folder (Cocoa error 513.)
I'm trying to create a folder inside the /sounds folder of my app.
-(void)productPurchased:(UAProduct*) product {
NSLog(@"[StoreFrontDelegate] Purchased: %@ -- %@", product.productIdentifier, ...
3
votes
2answers
103 views
NSFileManager createDirectoryAtPath:withIntermediateDirectories: Not creating directories or creating errors
In my app, when a user makes an in app purchase, the application needs to download and unzip a zip file to the app's documents folder. The zip file downloads and can be unzipped. I'm using Objective ...
3
votes
2answers
272 views
iCloud - Moving the file completed
I can able to move a file from the local directory to iCloud using the condition setUbiquitous:YES. The file has been moved successfully. If the file size is large, it takes certain time to complete ...
3
votes
1answer
66 views
Checking if a file exists before continuing [Obj-C]
currently here is my code
NSFileManager *fileManager = [[NSFileManager alloc] init];
BOOL receiptExists = NO;
BOOL didLog = NO;
while (!receiptExists) {
receiptExists = [fileManager ...
3
votes
2answers
123 views
Checking if Image Exists in Bundle - iPhone
I have an app with a number of images. I want to check if an image exists in the bundle. If it does I display it, if not I display a replacement image.
The code below is what I've come up with, ...
3
votes
1answer
220 views
How to check if a directory exists in Objective-C
I guess this is a beginner's problem, but I was trying to check if a directory exists in my Documents folder on the iPhone. I read the documentation and came up with this code which unfortunately ...
3
votes
2answers
252 views
How to get All paths for files in Documents directory?
I usually get paths by using NSBundle.
But, NSBundle does not contain Documents folder.
How to get All paths(or names) for files in Documents directory?
3
votes
1answer
207 views
How to obtain the size of a Application Directory in iPhone?
(NSString *)
getApplicationUsage{
double directorySizeInBytes = 0.0f;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSApplicationDirectory, NSUserDomainMask, YES);
NSString ...
3
votes
1answer
199 views
NSBundle folder not found on device, but works in simulator (UPDATED)
I'm having a really weird problem with the iPad app I'm writing. On startup I want to copy a folder containing a few other folders (that are empty) from the application bundle to the Documents ...
3
votes
1answer
180 views
NSFileManager unable to view below certain directories
I'm trying to write some code to inspect or alter (not malicious or anything like that) other iOS apps installed on the user's device. Specifically on a Jailbroken device. On the jailbroken device I ...
3
votes
2answers
229 views
Is there a safer way to create a directory if it does not exist?
I've found this way of creating a directory if it does not exist. But it looks a bit wonky and I am afraid that this can go wrong in 1 of 1000 attempts.
if(![[NSFileManager defaultManager] ...
3
votes
2answers
121 views
will NSFileSystemFileNumber in iOS always be unique?
When using attributesOfItemAtPath:error:, is NSFileSystemFileNumber always guaranteed to be unique for the device?
For example, I have a file with a certain NSFileSystemFileNumber, but a few days ...
3
votes
1answer
236 views
iPhone : How to show only a particular folder inside my app's Documents directory in iTunes
I want to show only a particular folder inside my app's Documents directory when seen in iTunes.
All the other folders and my database, which are inside my app's Documents directory should be hidden ...
3
votes
2answers
565 views
NSFileManager: Continue writing to disk in background?
in my iPhone app, I am using the default NSFileManager to copy and move some data around. The amount of data may be some MB, so it may take several seconds to finish copying. If the user now starts a ...
3
votes
2answers
2k views
Saving video from UIImagePickerController
In my application, the user can record a video using the UIImagePickerController, and I need to save it to disk for later use. I've gotten the path out of the info dictionary and I'm going to save it ...
2
votes
0answers
41 views
iCloud Support in an application for Mac OS X Lion
Within a Mac OS X (10.7 Lion) Non-Document Based application, I want to include iCloud support so I can share data across other instances of the same application on other macs (not to iOS devices). ...
2
votes
3answers
89 views
iOS: NSFileManager and other copy methods fail
I'm trying to copy a file from my iOS app's bundle directory from the app's Documents directory. I have tried two methods. First, the standard Cocoa way, using NSFileManager:
NSString *docPath = ...
2
votes
1answer
48 views
NSFileManager removeItemAtPath locks main thread
I'm working on an app that can remove large amounts of files. When I invoke the NSFileManager's removeItemAtPath method, the app's UI locks until the operation finishes (this can take a while).
I ...
2
votes
1answer
320 views
Sandboxing and directory listing
A common task I do consists reading a directory content using NSFileManager:contentsOfDirectoryAtPath but enabling sandboxing in Lion this becomes impossible.
I know user must choose from a ...
2
votes
1answer
232 views
What's the difference between path and URL in iOS?
In a class such as NSFileManager there are 2 versions of practically every method. One for paths and one for URLs. What's the difference? And what's the best practice for converting a URL to a path.
...
2
votes
4answers
799 views
Read/write file in Documents directory problem
I am trying to write a very basic text string to my documents directory and work from there to later save other files etc.
I am currently stuck with it not writing anything into my Documents ...
2
votes
2answers
105 views
NSFilemanager and secure delete
Is there any officially supported way of secure-deleting files in Mac OS X 10.5+?
if not, what about if I move all files (using NSFilemanager) to a common folder, and use srm: from a shell script. ...
2
votes
1answer
273 views
Reasons setAttributes:ofItemAtPath:error: could fail when applying NSFileProtectionComplete?
I'm starting to apply the iOS 4 Data Protection to the files my app uses. I'm concerned about the possibility of setAttributes:ofItemAtPath:error: failing to apply the changes: is there a discrete set ...
2
votes
2answers
203 views
Empty Trash Bin via Objective-C/Cocoa
I was wondering if there is a way to programmatically empty the contents of the trash bin. I'm currently deleting files that are located there using:
NSFileManager *manager = [NSFileManager ...
2
votes
2answers
470 views
iOS: Saving audio file visible in iTunes Library
I am trying to save a mp3 file into a folder where the file could be visible in iTunes Library. I read somewhere that if I save it on NSDocumentDirectory, it would work, but I had no luck on trying ...
2
votes
3answers
146 views
Validating a file is what it claims to be by it's file extension
Is there a way to validate a file is what it claims to be according to it's file extension?
I have a large number of files that my application copies to a remote server. Before doing each file copy I ...
2
votes
2answers
567 views
Cocoa - Gaining Root Access for NSFileManager
So I need to move system files with NSFileManager in my application and I don't seem to have root access. What would be the easiest way to go about gaining this privilege? I have looked into the ...
2
votes
3answers
524 views
How to rename directories?
I have created a folder within the Documents folder in my application directory .
I wanted to rename that folder through code,but not able to understand how to do it.
Please help me out.
2
votes
2answers
574 views
Xcode app version not compatible with Mac OS X version
am using Os X 10.6.4 and X code Version 3.2.3 for developing some simple app files and using PackageMaker to distribute these app files. But when trying to run the package on some other mac I am ...
2
votes
2answers
122 views
Automatically observing filesystem changes in UITableView
I'm hoping someone could suggest a way that I could automatically "observe" changes in a filesystem with a UITableView.
I have a UITableView populated with the contents of files in my directory.
...
2
votes
2answers
2k views
iPhone : Unable to copy from MainBundle to NSDocumentDirectory
I am trying to copy a couple of image files from my MainBundle/SampleImages folder to the application NSDocumentDirectory/Library folder, but am unable to do so. I have checked that the images are in ...
2
votes
4answers
6k views
iPhone (iOS): copying files from main bundle to documents folder causes crash
I am trying to set up my application so that on first launch, a series of files located in the "Populator" folder in the main bundle are copied into the documents directory.
My current implementation ...
2
votes
1answer
2k views
NSFileProtectionComplete for iOS 4.0 apps
I saw a WWDC 2010 video about NSFileProtectionComplete and protecting app's data.
Are there any examples out there? Does any one have sample code to share?
2
votes
2answers
232 views
On iPhone, how do I check once per day to see if i should phone-home?
I want to check a file on the server only once each day (NSURL). And, no matter if I fetch the file or not, I do not run the function (to check for the file) again that day.
This would SEEM easy... ...
2
votes
2answers
2k views
Am I crazy? Help with NSFileManager delegate method shouldProceedAfterError in 10.5+
So I'm kind of a Cocoa n00b, but I'm writing this simple little program and I can't get the NSFileManager delegate method "shouldProceedAfterError..." to fire. Here's the code I'm running in my ...
2
votes
1answer
264 views
Creating files in Objective-C
Which is the faster way of creating files ?
Case 1:
======
NSData *data = [Some data];
[data writeToFile:filePath atomically:YES];
Case 2:
=======
NSFileManager *fileManager = [NSFileManager ...
2
votes
2answers
5k views
Error while checking if a file exists
I'm trying to write to a plist file using writeToFile, before I write I check whether the file exists.
This is the code:
#import "WindowController.h"
@implementation WindowController
@synthesize ...
2
votes
1answer
9k views
create a directory in the iPhone
What's wrong with that?
#define AUDIO_NOTES_FOLDER [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/myApp/Pictures"]
NSFileManager *NSFm= [NSFileManager defaultManager];
BOOL ...
2
votes
1answer
971 views
Find parent directory of a path
Is there any way to find the parent directory of a path using NSFileManager or something?
e.g. Take this:
/path/to/something
And turn it into
/path/to/
Thanks