-3
votes
0answers
44 views
objective type questions for Java I/O [closed]
I need objective type questions for Java I/O, can anyone help?
0
votes
3answers
19 views
PHP FILE HANDLING ERROR - Unable to figure out
function Random_N() {
$RandomNumber = mt_rand(1, 9999);
return 'temp_file/$RandomNumber.html';
}
global $file_name;
$file_name=Random_N();
$file = fopen($file_name, 'w+');
…
1
vote
6answers
46 views
Program capable of opening a large XML file in windows
Hiya All,
I need to parse and process an XML feed, unfortunately the feed is about 110mb in size (and i cannot do anything about it) but to be able to parse it i need to see the structure (or if …
1
vote
3answers
42 views
Tokenize from a textfile reading into an array in C
How do you tokenize when you read from a file in C?
textfile:
PES 2009;Konami;DVD 3;500.25; 6
Assasins Creed;Ubisoft;DVD;598.25; 3
Inferno;EA;DVD 2;650.25; 7
char *tokenPtr;
fileT = …
0
votes
1answer
40 views
Reading different data from a textfile delimited with semicolons in C.
How do one read different records of data that are separated with semicolons into an array in C?
from textfile: Text One; 12.25; Text Two; 5; Text Three; 1.253
fopen ...
for(i = 0; i < nrRecords; …
0
votes
1answer
59 views
Reading from a textfile into an array into the C programming language
How do I read into an array a string with space in it, delimited with semicolons from a textfile in the C programming language?
***from textfile***
"My Record; My Second Record; My Third"
.
.
.
…
0
votes
4answers
103 views
How to sniff the number of records in a binary file before reading into an array in the C programming language?
How do I tell in a better way how many records there are in a binary file before I open up the file and read the records into an array for example?
MyFile = fopen("DATA.dat", "rb");
i = 0;
while …
0
votes
0answers
36 views
FTP from windows to linux using filezilla causes doubling of file sizes??? [closed]
Running filezilla 3.3.0.1 (and slightly older versions exhibit this behavior as well) to Red Hat Enterprise 5x with filezilla server, we are getting doubling of text files on overwrite. It seems to …
0
votes
1answer
59 views
copying text to a character array from a text file in C?
Hey there, How do I go about copying text inside a text file into a multidimensional character array?
supposing the text file( text_file.txt) contained
this is the first line
this is the …
2
votes
3answers
52 views
How do I list just the files that would be commited?
Hello,
Is there any way to get a list of files that will be committed when I type the following?
git commit -m "my changes"
git status lists too much. I could strip out all the words, but I'd …
0
votes
0answers
23 views
NT Server: deleting files takes ages [closed]
hi all,
i'm running an NT Server - when trying to delete eg. just one file - it takes several minutes (!!) until the file gets deleted. i'm only getting the deleting-dialog but nothing happens.
any …
2
votes
3answers
78 views
Renaming files to remove periods in Powershell
I have a list of files like this:
Test.(file1)[text].txt
Test.(file2)[text].txt
Test.(file3)[text].txt
I need to remove any "()","[]" and any ".", replace them spaces without changing the file …
0
votes
5answers
87 views
Can’t delete file - c#
Hey
Why can't I delete files after downloading file
I get error:
file 'exfile.jpgg' because it is being used by another process.
Edit: (Here is more code)
…
0
votes
1answer
51 views
File modification time (seconds) on Unix
Hi there,
On Unix, is there a command to display a file's modification time, precise to the second?
On Linux this is easily done with a "stat -c %y", which returns something like 2009-11-27 …
2
votes
1answer
65 views
Open “file” from memory stream?
Hi,
I am wondering if its even possible. I am returning files from database (blob) and have them as bytes array. I would like to let the user to show the data content by clicking on associated object …
