0
votes
0answers
7 views
Interrupt driven HD44780 library for an Arduino
I have an HD44780 LCD screen, and I've been using the LiquidCrystal Library provided with the Arduino development package. However, it's not reliable. I noticed some problems with it, and instead of …
1
vote
7answers
133 views
How do I check if a file exists? (Java on Windows)
How can I check whether a file exists, before openinging it for reading in Java? (equivalent of Perl's -e $filename).
The only similar question on SO dealt with writing the file and was thus …
1
vote
1answer
66 views
How do I correct this silent failure to write files using Java IO?
I am encountering a strange issue with the commons-io/java-io. Essentially my file creation is failing silently without an exception.
FileUtils.writeLines(file, collectionOfStrings);
I've looked …
5
votes
6answers
2k views
Non-blocking read on a stream in python.
Hi,
I'm using the subprocess module to start a subprocess and connect to it's output stream (stdout). I want to be able to execute non-blocking reads on its stdout. Is there a way to make .readline …
0
votes
2answers
50 views
C# TCP/IP Client having an IO Exception.
The IO Exception: "Unable to read data from the transport connection: An established connection was aborted by the software in your host machine."
The code has been copied from a tutorial and I'm …
0
votes
2answers
46 views
aio_write on linux with rtkaio is sometimes long
I'm using async io on linux with rtkaio library. In my tests everything works perfectly, but, in my real application i see that aio_write which is supposed to return very fast, is very slow. It can …
0
votes
4answers
26 views
Restricting file/folder write to paths other then the specified root
In .NET is there any API that allows me to restrict some IO operations to the specified path?
For example:
Root Path: C:\Test\
Now I want to call a function like this:
…
1
vote
2answers
109 views
differences between ruby file access mode r+ and w+
hi all, when using files in the ruby language, what is the difference between r+ and w+ mode?
and a+?
great thanks.
0
votes
5answers
98 views
How can i Rename File???
Hiii.... All....
My purpose is to rename one File... what i m Doing is.... i m Searching A perticular String in a text File... among So many files and if that perticular text Found.. then i waana …
0
votes
2answers
63 views
Java: Why isn’t my file writing working?
I'm trying to write a file from my Java program, but nothing happens. I'm not getting any exceptions or errors, it's just silently failing.
try {
File outputFile = new …
4
votes
3answers
693 views
Recursive File Search in .net
Hi,
I need to search a drive (C:, D: etc) for a partuicular file type (extension like .xml, .csv, .xls). How do I preform a recursive search to loop all directories and inner directories and return …
3
votes
3answers
60 views
How do I get the InputStream of decompressed data from an InputStream of GZIPed data?
I call a service which returns a gzipped file. I have the data as an InputStream (courtesy of javax.activation.DataHandler.getInputStream();) from the response.
What I would like to do is, without …
2
votes
2answers
223 views
Event Loop vs Multithread blocking IO
I was reading a comment about server architecture.
http://news.ycombinator.com/item?id=520077
In this comment, the person says 3 things:
The event loop, time and again, has been shown to truly …
0
votes
3answers
130 views
Is there a simple method for checking whether a Ruby IO instance will block on read()?
I'm looking for a method in Ruby which is basically this:
io.ready_for_read?
I just want to check whether a given IO object (in my case, the result of a popen call) has output available, i.e. a …
0
votes
1answer
25 views
File I/O In DrScheme
(read) takes in a string from stdin, parses it as an s-expression, and returns that expression. How do I do the exact same thing, except taking input from a file?
