Tagged Questions

0
votes
0answers
46 views

weird behaviour of seek C#

Hello, I have some difficulties with stream. I am using FileStream and BinaryReader and I got some seird behaviours. First of all (and this was on another question, when used Stre …
1
vote
3answers
203 views

Question about file seeking position..

My previous Question is about raw data reading and writing, but a new problem arised, it seems there is no ending.... The question is: the parameters of the functions like lseek() …
2
votes
2answers
62 views

String replacing in a file by given position

I have a file opened in 'ab+' mode. What I need to do is replacing some bytes in the file with another string's bytes such that: FILE: thisissomethingasperfectlygood. string: …
0
votes
4answers
62 views

Can seek and tell work with UTF-8 encoded documents in Python?

I have an application that generates some large log files > 500MB. I have written some utilities in Python that allows me to quickly browse the log file and find data of interest. …
0
votes
1answer
60 views

Question About CFile Seek.

I am using MFC CFile Seek function. I have a problem about Seek out of file length. CFile cfile; BOOL bResult = cfile.Open( L"C:\\2.TXT", CFile::modeReadWrite | CFile::modeCreat …
1
vote
2answers
23 views

PHP: SeekableIterator::seek()

If I want to implement seek() to complete the SeekableIterator interface, should I internally revert to the old position if the seeked position is invalid? Like this: public funct …
1
vote
2answers
82 views

Seekable alternative to .NET’s CryptoStream?

Does anybody know a seekable alternative to .NET's CryptoStream? It is OK if the alternative supports Seek only in "read" mode or if it is limited to e.g. AES256.
1
vote
1answer
208 views

Delphi read next line and replace

I have a program that imports a text file that has many entrys: ### Starttime: 06.03.2008 Data: SOME RECORDS HERE ### Starttime: 21.03.2008 Data SOME RECORDS HERE ... and so on …
0
votes
4answers
227 views

What is an array/ordered lookup database?

I'm looking for a database that supports the following functionality: 1) Records in the database are like Python dictionaries or Perl hashes. For example, a "purchase" record migh …
2
votes
2answers
97 views

http based filesystem with seek and lock support

Hi - I'm building an application that needs to use a web server like a file system. Specifically, the ideal solution would be: A server side component that would allow, via HTT …
-3
votes
1answer
1k views

C# stream seek() [closed]

Read/Write file using stream seek() in c#.
0
votes
2answers
405 views

Streaming files over the network with random access - java

Hey all, So ive got a need to play music files from a server on the network, in a java client app. I was thinking Sockets - have the server open a music file as a stream, and have …