Top "Io" questions

In computing, input/output, or I/O, refers to the communication between an information processing system (such as a computer), and the outside world, possibly a human, or another information processing system.

Get file name from FileOutputStream

Is there a way to get the file name from a FileOutputStream or from FileInputStream?

java io fileoutputstream
How do I access a network drive through the usual System.IO classes?

My software handles multiple operations on files, and I have now finished writing the related functions, using the System.IO …

.net vb.net filesystems io network-drive
How can I use a file in a command and redirect output to the same file without truncating it?

Basically I want to take as input text from a file, remove a line from that file, and send the …

bash redirect io
What is the difference between getch() and getchar()?

What is the exact difference between the getch and getchar functions?

c io console-application stdio c-standard-library
Return value of fgets()

I have just recently started working with I/O in C. Here is my question - I have a file, …

c io fgets
Reading two text files line by line simultaneously

I have two text files in two different languages and they are aligned line by line. I.e. the first …

python file io readfile
Checking if a file opened successfully with ifstream

I have the following that will open a file for reading. However, I want to check to make sure that …

c++ io ifstream
How to use Bash read with a timeout?

I can ask the user to press Enter by using read, and have him wait by calling sleep. But I …

bash io timeout
java.io.EOFException when try to read from a socket

i don't know why java.io.EOFException appear. i want to write a file after i get binary stream from …

java file io eofexception
Blocking IO vs non-blocking IO; looking for good articles

Once upon a time I bumped into Introduction to Indy article and can't stop thinking about blocking vs non-blocking IO …

events blocking nonblocking io