Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
2k views

NSFileHandle fileHandleForWritingAtPath: return null!

my iPad app has a small download facility, for which I want to append the data using an NSFileHandle. The problem is the creation call only returns null file handles. What could be the problem? Here ...
7
votes
7answers
6k views

How to read data from NSFileHandle line by line?

I have a text file having data as given e.g. ...
5
votes
2answers
1k views

Base64 Encode File Using NSData Chunks

Update 4 Per Greg's suggestion I've created one pair of image/text that shows the output from a 37k image to base64 encoded, using 100k chunks. Since the file is only 37k it's safe to say the loop ...
3
votes
1answer
316 views

Write to NSTasks standard input after launch

I am currently trying to wrap my head around the hole NSTask, NSPipe, NSFileHandle business. So I thought I write a little tool, which can compile and run C code. I also wanted to be able to redirect ...
3
votes
1answer
55 views

What exactly is a communication channel?

When I look at the NSFileHandle API docs, I see there are a lot of networking methods talking about sockets and stuff like that... At the top, they say: NSFileHandle objects provide an ...
2
votes
1answer
188 views

How to use NSFileHandle's writeabilityHandler?

Starting from OS X 10.7 and iOS 5.0 NSFileHandle has two new properties: readabilityHandler and writeabilityHandler. I tried to use writeabilityHandler, but no luck. The documentation is weird, it ...
2
votes
1answer
580 views

What's the difference between a “stream-type” socket and a “datagram” socket type?

What's the difference between a "stream-type" socket and a "datagram" socket type?
2
votes
2answers
571 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
1answer
1k views

Writing to a new line of a file in Objective-C

For some strange reason, the \n and \r escape sequences do not seem to be working in my code. I want to write each NSString on a new line of the file, but it just appends it the last string on one ...
1
vote
1answer
53 views

NSFileHandle & Writing Asych to a file in iOS

I have a situation that I receive a byte data through Web Services request and want to write it to a file on my iOS device. I used to append all data (till end of data) in a memory variable and at the ...
1
vote
2answers
91 views

NSTask only returning standardError in release build

First of all, when debugging and running in Xcode everything works as expected. But when I try to "share" my app, i.e. make a release build, my NSTask won't output any standardOutput while ...
1
vote
2answers
185 views

Does NSFileHandle -readDataOfLength: return autoreleased NSData?

When I call readDataOfLength: on an NSFileHandle instance, do I need to release the returned NSData? Currently I'm not, but I would like to get rid of this nagging doubt.
1
vote
0answers
66 views

how to add,insert,delete a piece of data in a file directly,like the NSMutableArray

I checked Iphone SDK Documentation, find NSFileHandle object, it said "with NSFileHandle, you can range over an open file and insert, extract, and delete data." but I could only find the way to ...
1
vote
2answers
239 views

How to save images and recoded files in temp directory?

I want to store pictures taken from camera and video recordings from my application in a separate folder in temporary directories for a while. And as the task is being completed, they shall be going ...
1
vote
1answer
76 views

What are Sockets, Pipes and Devices?

I'm studying the Low-Level File Management Programming Topics from Apple. In the NSFileHandle section, they say: The scope of NSFileHandle is not limited to files. It provides the only ...
1
vote
2answers
2k views

NSFileHandle fileHandleForReadingFromURL can someone explain this to me please?

I am trying to make a customized input stream based off of the one by Dave DeLong here that also allows for reading data from a server via NSURL. So far, I have this approach, which works fine for ...
1
vote
0answers
178 views

iPhone OS 4.0: NSFileHandleDataAvailableNotification not providing callback at file-end

I'm a bit new to iPhone development, so be gentle! I'm supporting an app which loads a wav file from a URL file-stream, and plays it back through an AudioQueue. We run a continual loop in another ...
1
vote
0answers
130 views

Is it possible to search files of particular extension in the entire device?

In my application, i am trying to find all files of particular extension (like .pdf, .txt, etc) that are stored in the device (either downloaded or transferred from system) and want to list them in ...
1
vote
2answers
795 views

How to download a wav file from the web to a location on iPhone using NSFileHandle and NSURLConnection?

I want to download a wav file from a web service, cache it on the iphone and playback it using AVAudioPlayer. Using NSFileHandle and NSURLConnection seems a viable solution when dealing with ...
0
votes
1answer
47 views

Objective C FileHandle's fileHandleWithStandardOutput

In the FileHandle Class there is a fileHandleWithStandardOutput method. According to the Documentation, "Conventionally this is a terminal device that receives a stream of data from a program." What ...
0
votes
2answers
86 views

How to use NSFileHandle to read integer from file

I want to read a list of integers from a text file, I just want to write code like int temp; fin>>temp; But when I read the Cocoa documentation, I found NSFileHandle is suggested, and there ...
0
votes
0answers
76 views

Writing zero's to large file using nsfilehandle

i try to create a file with a large size (1Mo to 32GO) and fill it with zero, i use nsfilehandle to do that but my app crash if i try to write over than 1024 bytes. My code : - ...
0
votes
0answers
39 views

Flush a pipe associated to an NSFileHandle

I am reading piped output from a console application via an NSFileHandle in Cocoa. How can I flush the stream associated to that file handle. If I could get a FILE* object from the NSFileHandle I ...
0
votes
0answers
75 views

How do I check for NSFileHandle has data available?

I'm working with NSTask, configured with 3 NSPipe, and want to read from standardOutput and standardError. I do it inside while - 1st for stdout, next for stderr. I can't use readInBackgroundAndNotify ...
0
votes
1answer
60 views

Reading float from a custom file

I want to read some float value one by one from a custom file I defined "player.geo". player.geo is a file I created using Xcode 4 ("Empty File" from the File > New menu) I'm currently trying to do ...
0
votes
0answers
111 views

Unknown problem by reading a file descriptor

Hello everyone who reads this, im trying to make a source from a iphone app to work and learn how it works but im getting an issue at the moment of reading a File descriptor. It is using the read() ...
0
votes
1answer
63 views

getting an error when trying to use seekToFileOffset

I am currently trying to read a line of 5 characters from a offset in my text file. I am pretty sure everything is working however when I print the contence of my buffer to the log, it outputs this ...
0
votes
1answer
285 views

how to open text file with NSFileHandle

I am trying to open a small text file to test some NSFileHandle functions on the file. however I cannot figure out how to do this, if you could tell me what I am missing that would be great. //.h ...
0
votes
1answer
155 views

How does NSFileHandle offsetInFile work?

I am just wanting to know how offsetInFile works? and what is the difference between seekToFileOffSet. and code examples you know of would be helpfull as well :)
0
votes
1answer
481 views

iOS ALAssetsLibrary and NSFileHandle reading file contents

I want to read the contents of an assets library file in iOS NSFileHandle fileHandleForReadingFromUrl using the asset defaultRepresentation url seems to always return 0x0... I'll keep looking for a ...
0
votes
1answer
210 views

HTTP server works in Cocoa application but not test case — run loop issue?

I'm trying to add a GHUnit test case to this SimpleHTTPServer example. The example include a Cocoa application that works fine for me. But I can't duplicate the behavior in a test case. Here is the ...
0
votes
0answers
240 views

NSFileHandle: Bad file descriptor

I continually get *** -[NSConcreteFileHandle writeData:]: Bad file descriptor when I run this: NSSocketPort *sockPortClient; sockPortClient = [[NSSocketPort alloc] initRemoteWithTCPPort:12345 ...
0
votes
1answer
1k views

how to write in append mode for text file

My application navigation based. UItextView for notes UIViewController. I am writing data for text to file. Now i need to write in append mode , the below code i am trying but every time is writing ...
0
votes
1answer
226 views

Couple of questions on NSFileHandle, Obj-C

I'm working now on Obj-C with files, my application shall read some huge text files (e.g. 5 MB) that have character encoding of UTF16.. The first problem is how do I detect the file size that I'm ...
0
votes
1answer
133 views

Must I close the File Handle when doing this?

Example: NSData *fileData = [fileHandle readDataToEndOfFile]; Am I responsible for closing that file handle? (I think I'm not...but just 99.95% sure!)
0
votes
1answer
135 views

Does NSFileHandle create the sockets for me?

Does NSFileHandle create the sockets for me? Or must I create them myself and then setup an NSFileHandle to use that socket?
0
votes
1answer
295 views

Difference between -fileHandleForWritingAtPath: and fileHandleForUpdatingAtPath:?

For me it sounds like the same thing. Updating a file implies to write to the file. Writing to a file is also an update for me. But I guess there's a subtle difference ;-) Does anyone know?
0
votes
1answer
36 views

Cocoa Createfileapath

I am trying to create a file on mac os. the data from the file will be accessed by the app. but how to create a file having read permission on all accounts. Currently the app can read data in admin ...
0
votes
2answers
194 views

Optimize memory consumption when gradually writing to a file

I've been doing some tests, and one of my needs is to read data from different xml files and stack it together on a single file. While I've managed to accomplish this, memory consumption seems to be ...
0
votes
1answer
247 views

NSFileHandle for binary files?

How can we read executable files in memory and then manipulate them , does NSFileHandle can works with executable files and how so ?! Thank you.
0
votes
1answer
535 views

Sending large amounts of data with NSFileHandle

So I'm using Apple's PictureSharing/PictureSharingBrowser samples to send and receive data. This uses an NSFileHandle on the server side to send a picture using NSFileHandle's writeData method. ...
0
votes
1answer
367 views

iphone charset howto

i've a class (downloaded from internet) that read a value of a file in this way (and after split the file): NSArray* array = [fileContents componentsSeparatedByCharactersInSet:[NSCharacterSet ...
0
votes
2answers
473 views

Send more than 32768 Bytes at once from one TCP-Socket to an other

Hey guys, I don't know if this question has been asked yet but imagine following situation: I have two TCP-Sockets (opened with NSSocketPort und listening with two NSFileHandle) and now I want to ...
0
votes
1answer
515 views

NSFileHandle weird problem with iphone

i am downloading an mp3 file using NSURLConnection and saving it to a file . The problem is mp3 file is created (found the mp3 file created when using simulator), but i cannot access the mp3 file . ...
0
votes
2answers
89 views

in cocoa,Aout serial communiction using nsfilehandle issues

i have a software about serial communication , it to be develop in MAC os=10.5.8 using cocoa 's nsfilehandle , test ok , but when MAC os upgrading to 10.6 ,the program work no normal, can't receive ...
0
votes
0answers
455 views

Use NSFilehandle to serial-port communication ,why don't receive NSFilehandle's notification [closed]

my source-code as belowed : a part of source-code as belowed : - (id)init { NSFileHandle *fh =[[NSFileHandle alloc] initWithFileDescriptor:myfileDescriptor closeOnDealloc:YES]; ...
-1
votes
2answers
108 views

How to read text chunks from a huge text file?

I am trying to read a text file containing characters in billions. Using the function contentOfFile is not working, as my application get crashed due to it. So anybody please send me the sample code ...
-2
votes
1answer
132 views

writing file with NSFileHandle in NSThread crash app

I attempt to write a file in thread because it freeze my app when writing but when i launch writing process it crash 2011-10-04 21:53:51.022 xxxxxxxxx[2046:6603] *** Terminating app due to uncaught ...