The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
10 views

PHP is_file() and file_exists() doesn't return true for existing PDF and SVG files

I don't know if this is an intrinsic property of the functions or something in my PHP configuration, but for some reason when I am using is_file() and file_exists() to confirm the existence of a PDF ...
1
vote
1answer
46 views

Sending large files (~ 1GB) fails with SocketException

I'm trying to send large files using socket programming in java for a p2p file sharing application. This code is sending 200-300 mb files without any problems, but for large files around 1 gb it is ...
0
votes
2answers
51 views

Moving in text file with C#

I have a problem with C#. I am writing code to search a text file until it finds a certain word, then the code should move three lines and read the fourth, then continue the search to find the ...
-1
votes
0answers
7 views

How big corporations like flickr, google images handle and folder their images?

I searched about this a lot and It really makes me curious that, how big corporations store their pictures ?. Is it folder based ? or picture datas that are stored in database ? or tons of folders ...
2
votes
2answers
75 views

reading big data in C++

Im using C++ to read large files with over 30000 lines and 3000 colums. (30000 x 3000) matrix. im using a 2d vector to push the read data. But i need to do this process a couple of times. Is there any ...
0
votes
0answers
20 views

How implement a bast wait for a specific file to be closed from write mode under windows?

I have a bash script run under Windows and I do want to wait until a specific file is not open for write anymore. Does anyone know a way to implement this in bash under cygwin, without installing ...
-1
votes
2answers
48 views

FileOutputStream appending issue, where I am going wrong?

I am trying to get a 3 to 5 PDF file(from some internet source) & merging them one after another. FYI, I dont want to use iText or any other PDF lib, because, please look at the code once public ...
2
votes
2answers
91 views

Rename a file in Python

I’m a self-taught python newbie of a couple of days. I’ve got a basic understanding of the way python operates, but I’m really stuck with the following. I have a list of text files which are ...
-8
votes
0answers
52 views

Copy unique lines from a file to another file in C [closed]

How to copy unique lines from a file to another? Input file: line a line b line c line a Output file: line a line b line c
0
votes
0answers
81 views

[Can't figure out][C++] Access violation error using ofstream/fstream?

I am writing to a file, using ofstream. The writes are very rapid for one thing, file is closed and opened extremely frequently. Below is the code: if( !(IS_ERROR(wcstombs_s( (size_t*)&out, ...
0
votes
1answer
65 views

Print each hash key and its values in new file?

I have made a hash of hashes, where all the lines of a file are sorted into a key of the "master" hash depending on the value of their 5th field. %Tiles has n keys, where each key is a different ...
0
votes
0answers
69 views

String^ manipulation involving .txt file in visual c++ 2010

I have a windows form SearchById and i have a class UserRecord(for storing credentials such as name,etc of users)(having instance obj) defined in UserRecord.h . Now , when I click on Done button on ...
0
votes
1answer
40 views

FprintF from linklist to file

I have added the Fprintf into the SavePacket function but it doesn't recognise pos->destination like it does withing the outpackets function, How do i addapt the code so it takes the data saved in my ...
0
votes
1answer
32 views

Trying to pass sudo password directly through STDIN

This is my program, and it doesn't seem to be working. Sometimes I thought it worked with \0 or \r instead of \n, but I guess that is because I had already executed a sudo command on the terminal ...
0
votes
3answers
25 views

PHP include a text file whilst keeping carriage returns?

I have a text file that I'm including on my page, however the carriage returns aren't there as they are in the text document. How can I keep them as they are in the text document?
-2
votes
2answers
58 views

Reading and running code text from files

I know the way to read texts from files. But what if I want to read text from files that is the part of the code? I'm working on a game and I realized that describing the level objectsis very long. ...
0
votes
1answer
73 views

Multiple substitutions with a single regular expression with caring about position in perl

i want to read in a file, with lines of the form: "string1 string2 string3" and to substitute several chars off it, (but every chair should get substitue once) with for example these rules: tsch=> ...
-7
votes
1answer
51 views

Determining the number of people who score in certain range of points [closed]

I'm making a program that reads in a text file in this format playercode,playername,score and i then need to do this Score Analysis: A report showing the number of players that score in the ...
0
votes
1answer
36 views

File handling gone wrong

the code was running before I tried to read from file into array and display which I got working separately in a different file first . Now I don't know what has gone wrong but it wont debug now can ...
0
votes
5answers
58 views

C++ read from file

when I try to debug this code to read from a file and display it, the console screen comes and goes quickly and I don't understand why it's doing this. Can anyone help me please? #include ...
-1
votes
0answers
33 views

indexing a file from array of filehandlers

I am trying to write a string in a particular file indexed by an array of filehandlers in perl but I am not getting the string in file. The file every time remains blank. Kindly find my code below and ...
-1
votes
1answer
25 views

Thread abortion not happening on File Writing

I have file reading/writing mechanism from my WPF Application. I am reading a file(100,000) records and grouping in based on "Account Type" field in the file. Each account type has seperate output ...
-1
votes
0answers
31 views

can javascript write edit and read a html file?

im that guy that found out its actually hard to read and write a simple text file on an offline website so can the text file be actually text on an html file locally to the javascript and im able to ...
-1
votes
0answers
28 views

Write And Read Text Files From An Offline Website? [closed]

im working on an application, not complicated basically just read and write to text files i found out its almost not recomended in javascript, there was a plug in but wasnt well supported in all ...
0
votes
2answers
91 views

How to save the output file in a directory and print the name of the output file?

I am parsing a file from which I then create multiple output files. I would like to save the output file(s) in a special directory in the same folder the perl script was executed from. If the ...
1
vote
3answers
93 views

How do i get the file size to know whether its download or not?

hi iam using following code for downloading epub /pdf from a url .I like to give a progress bar so when i start downlaoding it shows the progress and when the download completes it will popup a ...
1
vote
3answers
44 views

Create File inside jar folder

I have a jar file abc.jar which has some certain code to create a file inside a folder named temp of same jar file. like createFile() Now i want to include abc.jar into my other web project. ...
2
votes
1answer
83 views

Create virtual file path from stream

I have a general question concerning C# & Windows API: My task is loading a file from a document management system (DMS) and create a byte array from this file. From the developer of the DMS I ...
1
vote
1answer
179 views

Python: Reading all files in all directories

I have the code working to read in the values of a single text file but am having difficulties reading all files from all directories and putting all of the contents together. Here is what I have: ...
-4
votes
1answer
49 views

exception in file reading [closed]

I am having an exception in this code and I am unable to figure out the problem. This code runs without while loop but with the WHILE loop it gives exception the code is: public class ...
1
vote
0answers
77 views

Getting extra character with file name

I am using CFileFind to get files list . i have an issue with one particular file always. getting file title with extra character '?' appended . original name : _KO - Ennamo Yedho Video Song ...
0
votes
1answer
64 views

Opening File in binary form

I am trying to use C++ to open a file. The file can be of any type. The thing that I am trying to do is to open the file as it is stored in the memory. Suppose that it is a 1 byte text file and ...
-2
votes
1answer
62 views

Use of fprintf and fwrite [closed]

We can't use fprintf if we are going to write the structure to the disk right ???? for text file we can use fwrite or fprintf either but.. for .. binary file we ought to use fwrite. correct me if i am ...
-1
votes
1answer
85 views

Input/Output through terminal with Codejam questions [closed]

Before i start my question, i would like to declare a few things: - This is not a copy of a question already on this site. There happens to be a question on similar lines however, i still do not ...
-2
votes
2answers
47 views

I want to delete part of a line in txt file using file hanling in perl [closed]

such that if the lines in input file are : abc !asdas abc, sadasda abc. the output file shoud be: abc abc, abc.
0
votes
1answer
78 views

Python: Regex a dictionary using user input wildcards

I would like to be able to search a dictionary in Python using user input wildcards. I have found this: import fnmatch lst = ['this','is','just','a','test', 'thing'] filtered = fnmatch.filter(lst, ...
1
vote
1answer
90 views

perl skip line N while reading a file

How would I skip say line 9 while I'm parsing a text file? Here's what I got use strict; use warnings; open(my $fh, '<', 'file.txt') or die $!; my $skip = 1; while (<$fh>){ $_=~ s/\r//; ...
0
votes
1answer
131 views

Using Delimiter and JButton to read next line

newbie to java swing and action listeners. what i am trying to is display a text file line by line, changing line when i hit a JButton. for delimiter i am using , or | the code i have so far is: ...
0
votes
1answer
71 views

Creating a text file that could be read using c fscanf

This is my program using which I am trying to read a simple text file and store the output in an structure. The problem I am facing currently is on the while loop where it does not to work. File ...
-3
votes
2answers
63 views

How can I manage and a csv file in c?

i have a csv file and which look like this : 1;53453;45847865 1;37567;53687686 . . . . n. 1;999768;5645644 and i want to open the file , read it and then split each line to 3 tokens which will ...
0
votes
1answer
33 views

Emailing text files as attachments from rake tasks, files are incomplete

I have a rake task that does a lot, but WRITES whatever it does on to a text file as below, handler = File.open("cheese.txt", "a+") handler.write("====Starting write!====\n") handler Now, Im ...
0
votes
3answers
83 views

new array values on each submit php

Dont know much PHP and wonder how I can get the new values from an array each time I submit, I have a form with 5 fields, the form sends the information to a txt-file then I want to take only the two ...
-1
votes
1answer
39 views

PHP make echo:ed text stay put on meny switch [closed]

This might seem like a trivial problem but I searched a lot and couldn't find anything that could be the solution to the problem, then I hardly know any php either so it might be a really simple ...
0
votes
2answers
22 views

Is there any way to open a file using a diff without patching the original?

Example, I have a 40Mb file, and i want to make some minor changes to it, maybe 20Kb of changes. I can create a diff between the resulting file and the original, simply enough, either by writing it ...
1
vote
3answers
92 views

echo part of array? PHP

Can someone please tell me why my code is echoing the whole array instead of only the two values i declared in $list I hardly know any php so can someone tell me whats wrong? ...
0
votes
1answer
71 views

append from txt-file to dynamically created list, PHP

New to PHP and have been struggeling for a while with how to create a list-element i PHP but cant seem to understand how it works, thougt it was alot like javascript... I have a txt-file that I'm ...
0
votes
0answers
60 views

parse error before = token [closed]

I am trying to open and read a file into a char buffer FILE *fp=NULL; char buffer[10]; int i,x; fp = fopen("data.txt", "r"); fread(buffer,SIZE,nElements,fp); Where SIZE and nElements are #defined ...
1
vote
3answers
75 views

Better approach for reading/writing files in python?

Suppose I have a file (say file1.txt) with data around 3mb or more. If I want to write this data to a second file (say file2.txt), which one of the following approaches will be better? Language used: ...
0
votes
1answer
44 views

Moving files on external volume with Ruby fileutils?

I've run into what feels like a pretty basic error, but I can't find any documentation about what I'm struggling with. Here's the code: require "fileutils" def new_name(fn, dest = ...
1
vote
2answers
59 views

Input to txt-file, txt-file to list element

I am new to PHP and have a question about how to append information to a .txt file using a form with a button with type="button", the appending should be ; separated in the .txt file. Can someone help ...

1 2 3 4 5 8