Top "Read-write" questions

Read/write is a mode of access designating the intent or ability to perform both read and write operations on a entity.

Reading/Writing a MS Word file in PHP

Is it possible to read and write Word (2003 and 2007) files in PHP without using a COM object? I know that …

php ms-word read-write
.NET Excel Library that can read/write .xls files

I'm looking for an Excel library which reads/writes .xls (not .xlsx) files. I'm using excellibrary but it's very buggy …

c# excel xls read-write
How to read/write arbitrary bits in C/C++

Assuming I have a byte b with the binary value of 11111111 How do I for example read a 3 bit integer …

c++ c memory bit read-write
Open files in 'rt' and 'wt' modes

Several times here on SO I've seen people using rt and wt modes for reading and writing files. For example: …

python file file-io read-write
Reading/Writing MS Word files in Python

Is it possible to read and write Word (2003 and 2007) files in Python without using a COM object? I know that …

python ms-word read-write
Create thread safe array in Swift

I have a threading problem in Swift. I have an array with some objects in it. Over a delegate the …

ios arrays swift multithreading read-write
How to access file included in app bundle in Swift?

I know there are a few questions pertaining to this, but they're in Objective-C. How can I access a .txt …

ios swift file read-write
Writing to stdin and reading from stdout (UNIX/LINUX/C Programming)

I was working on an assignment where a program took a file descriptor as an argument (generally from the parent …

c unix stdout stdin read-write
Read and Write permission for storage and gallery usage for marshmallow

I am developing an android app in which it is required to provide permission for Read and write external storage. …

android android-permissions android-6.0-marshmallow read-write
Read Write Integer Array Into Shared Memory

The following is the READER-WRITER code for my shared memory. Read Code- int main(){ int shmid; int *array; int count = 5; …

c linux gcc shared-memory read-write