The NSFileHandle class is an object-oriented wrapper for a file descriptor. You use file handle objects to access data associated with files, sockets, pipes, and devices. For files, you can read, write, and seek within the file. For sockets, pipes, and devices, you can use a file handle object to ...

learn more… | top users | synonyms

1
vote
1answer
42 views

Exception `-[NSConcreteFileHandle readDataOfLength:]: Bad file descriptor` when running a NSUserUnixTask

I'm using NSUserUnixTask to run an unsandboxed NSTask on my sandboxed app. However, my code hangs on calls to [NSFileHandle readDataToEndOfFile]. If I remove those calls it works perfectly. If I ...
0
votes
1answer
51 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
1answer
36 views

NSFileHandleDataAvailableNotification files repeatedly with no new data (resulting in very high CPU usage)

I'm attempting to read data from the Standard Error of a NSTask in Cocoa using waitForDataInBackgroundAndNotify. The following code does read the stream, so it's already working partially. The ...
1
vote
0answers
92 views

How to check for End-of-File using NSFileHandle's readabilityHandler?

I am reading data from a NSFileHandle (from a NSPipe) using a readabilityHandler block: fileHandle.readabilityHandler = ^( NSFileHandle *handle ) { [self processData: [handle availableData]]; } ...
0
votes
1answer
464 views

Stale NFS file handle issue on a remote cluster

I need to run a bunch of simulations using a tool called ngspice, and since I want to run a million simulations, I am distributing them across a cluster of machines (master+ a slave to start with, ...
2
votes
2answers
85 views

Python: File Handler Issue: Delete file without leaving .nsf files

I have following method to handle logging in my python program def createLogger(logger, logLang): """ Setting up logger """ log_format = logging.Formatter("%(asctime)s - %(name)s - ...
0
votes
1answer
181 views

NSString containing hex convert to ascii equivalent

I have an NSString that has hex information such as <00000020 66747970 4d344120 00000000 4d344120 6d703432 69736f6d 00000000 00031203 which came from NSData. What I need to do is convert that ...
0
votes
2answers
84 views

Set NSFileHandle seekToFileOffset to end of line

What I want to be able to do is write a string to the end of every line in a file. Right now i have a NSFileHandle writing to the file but only at the end of the file. How can I set it to the end on ...
0
votes
1answer
49 views

How to NSFileHandle a file got from another app

I'm currently trying to implement the opening file from another app. When I got to a third party app (like documents) and opening a file with my app, I can't seems to be able to open it with ...
1
vote
1answer
91 views

How can I catch EPIPE in my NSFIleHandle handling?

I'm having a problem with EPIPE in my iOS app, and it's not being caught in the @try/@catch/@finally block. How can I catch this signal (SIGPIPE, likely)... I've built a "web proxy" into my app that ...
0
votes
1answer
70 views

Is there any performance difference between creating an NSFileHandle for a large versus a small file?

This question strikes me as almost silly, but I just want to sanity check myself. For a variety of reasons, I'm welding together a bunch of files into a single megafile before packing this as a ...
1
vote
0answers
116 views

Terminating NSTask with NSFileHandle set for standard output

I have a batch of code that creates and runs an NSTask instance. Before running I set, for the standard output of the task, a NSFileHandle witch writes directly to a file I have created. Sometimes ...
1
vote
1answer
266 views

Downloading a video from a remote URL into device and streaming it via AVPlayer

What I'm doing currently is that, I have a remote URL containing a MP4 file. I download that into a file using NSData and NSFileManager (as I want to cache the file). Now I start to play the file ...
0
votes
0answers
86 views

Why doesn't NSFileHandle throw an exption when file no longer exist

I am using NSFileHandle's fileHandleForWritingAtPath to open a handle to a file and write into it (append to the end of it). Since I always need to write into it I never close the handle or check that ...
1
vote
1answer
122 views

NSFileHandle and scanf not echoing input in Xcode 4.5

I successfully use NSFileHandle to read keyboard input: NSFileHandle * keyboard = [NSFileHandle fileHandleWithStandardInput]; NSData *inputData = [keyboard availableData]; NSString * input ...
0
votes
1answer
100 views

iOS - NSFileHandle availableData hangs only when app is run manually on device

I have a file handle set up to read the contents of stdout, and when I try to pull the data out of it using availableData it hangs, but only when the app is run manually on my device. When I run the ...
0
votes
1answer
313 views

Objective C print stdout to UIAlertView

I have a C function that prints to stdout using fprintf, and I'm attempting to display the contents of stdout in a UIAlertView. My code is as follows: NSFileHandle *stdoutFileHandle = [NSFileHandle ...
0
votes
1answer
61 views

Recombining NSData objects after a download

I broke up a file into 50 mb packets on the server side and when I receive it on the iPad, I receive as NSData object through NSURLConnection. To restitch the data, do I create an empty NSMutableData ...
0
votes
1answer
114 views

Can someone help me spot a leak in this NSPipe/NSFileHandle code?

So I'm having this issue where once this NSFileHandle/NSPipe gets triggered... my CPU use and memory start going crazy. Problem is I'm finding it hard to find this leak. Any advice or help is ...
0
votes
0answers
161 views

File Name form NSFileHandle

I am using an third party SDK for file handling, they have given some handles for file open, file read, file write. When i create the object of wrapper of that SDK using file path its calls those ...
0
votes
1answer
255 views

Not able to edit first byte of file using NSFileHandle

In my app, I am using NSFileHandle to edit some file but it is not editing. Below is the code: with comments & logs output //Initialize file manager NSFileManager *filemgr; filemgr = ...
0
votes
1answer
213 views

Clang NSTask with streams

Never-mind all the "why?","useless?", and "don't bother" comments. I want to compile a program inside another program using clang. I can create the NSTask and set up the arguments and it will work if ...
0
votes
1answer
797 views

Writing data to the file on device and reading it back from the device (Iphone)

What is the easiest way to programatically create file.txt on your device, then in your application write down some data and then send this data to your Computer? I guess that the last part could be ...
1
vote
2answers
269 views

Async execution of shell command not working properly

So, this is my code : - (void)runCmd:(NSString *)cmd withArgs:(NSArray *)args { NSLog(@"\nRunning ::\n\tCmd : %@\n\tArgs : %@",cmd, args); [theSpinner start]; if (task) { ...
1
vote
0answers
107 views

NSFileHandle and removing a section of bytes

I'm a bit surprised because I believe that there is no obvious way to delete a section of bytes of a file. That is, suppose I have a file that holds 900 GB, and want to delete 8 bytes starting from ...
1
vote
1answer
676 views

[NSConcreteFileHandle writeData:]: Bad file descriptor - Crashes app on startup

I'm using GTMLogger and have the following piece of code that seems to be crashing since moving to iOS5.1 . The weird thing i can't seem to reproduce it, but i know its happening to many users, so I'm ...
0
votes
1answer
667 views

I'm trying to find a file size. But my length is equl to zero

I'm trying to find a file size. NSFileHandle *output = [NSFileHandle fileHandleForWritingAtPath:self.finalPath]; //seek to begin of the file [output seekToFileOffset:0]; NSData *mydata = [output ...
1
vote
1answer
141 views

“readInBackgroundAndNotify” increases retain count of reciever

I am using NSFileHandle to read data from a socket. This is how I am creating the filehandle: filehandle = [[NSFileHandle alloc] initWithFileDescriptor:sock closeOnDealloc:YES]; I am doing ...
0
votes
2answers
348 views

Modifying Data (bytes) in a File iOS

I have a huge encrypted file(mp4) about 700MB. Header of file is encrypted about (1MB+dummy bytes). The decryption of this file is done successfully. Now i want to remove the (1MB+dummy) encrypted ...
0
votes
0answers
88 views

cannot read file changed while runtime in objective c/iPhone

im trying to read file and change the file content for my app. here my code in viewWillAppear method: - (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; NSString ...
0
votes
1answer
262 views

NSTask pipes output to Console rather than the NSFileHandle

I set up an NSNotification for NSFileHandleReadCompletionNotification. I set up the standard I/O with two separate pipes. NSPipe * input = NSPipe.new; NSPipe * output = NSPipe.new; [serverTask ...
2
votes
1answer
2k 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
1answer
734 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 ...
1
vote
3answers
281 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 ...
0
votes
2answers
448 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 ...
5
votes
1answer
969 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
632 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 ...
0
votes
1answer
241 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
303 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 ...
-1
votes
2answers
1k 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 ...
1
vote
2answers
623 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.
2
votes
0answers
224 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 ...
0
votes
1answer
235 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 ...
4
votes
3answers
2k 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 ...
0
votes
1answer
219 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
1k 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 ...
3
votes
1answer
821 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 ...
0
votes
1answer
409 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
2k 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
427 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 ...

1 2