Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
4answers
4k views

Parsing CSV files in C#

Is there a default/official/recommended way to parse CSV files in C#? I don't want to roll my own parser. Also, I've seen instances of people using ODBC/OLE DB to read CSV via the Text driver, and a ...
12
votes
5answers
9k views

Write text files without Byte Order Mark (BOM)?

I am trying to create a text file using VB.Net with UTF8 encoding, without BOM. Can anybody help me, how to do this? I can write file with UTF8 encoding but, how to remove Byte Order Mark from it? ...
10
votes
5answers
3k views

Deleting non-empty directories in Java

Supposing I have a File f that represents a directory, then f.delete() will only delete the directory if it is empty. I've found a couple of examples online that use File.listFiles() or File.list() ...
6
votes
8answers
492 views

How to read text file by particular line separator character?

Reading a text file using streamreader. using (StreamReader sr = new StreamReader(FileName, Encoding.Default)) { string line = sr.ReadLine(); } I want to force that line delimiter should be \n ...
5
votes
0answers
29 views

lsof - age of file [migrated]

The *nix command 'lsof' gives you a list of open files. Is anyone aware of a way that would also list how long a particular file has been open? Either by using 'lsof' or any other command. I'm using ...
5
votes
3answers
72 views

Modifying XML file in-place?

Suppose I have the following XML File: <book> <name>sometext</name> <name>sometext</name> <name>sometext</name> <name>Dometext</name> ...
4
votes
4answers
65 views

What is the word that means “directory” or “file”?

I'm trying to name an object that can be a file or a directory. What's the correct terminology for this? I've considered handle -> rejected, object is not a handle address -> rejected, object is ...
4
votes
7answers
366 views

What's the best strategy to delete a very huge folder using Perl?

I need to delete all content (files and folders) under a given folder. The problems is the folder has millions of files and folders inside it. So I don't want to load all the file names in one go. ...
4
votes
2answers
2k views

Why do I get a SIGABRT here?

I have this code segment in which I am opening/closing a file a number of times (in a loop): for(i=1;i<max;i++) { /* other code */ plot_file=fopen("all_fitness.out","w"); ...
3
votes
1answer
157 views

Having problem understanding following C++ code. (seekp)

#include<stdio.h> #include<fstream.h> class Test { char name[10]; int data; public: void getData() { cin>>name; cin>>data; ...
3
votes
1answer
158 views

Parsing binary data in JavaScript

I want to design and write a 3d image viewing web application in JavaScript. I've already written it in java and flash and basically want to port it. I want the 3d image export files to be in a binary ...
3
votes
1answer
104 views

on a Web Setup, how do I exclude all .pdb files?

In a sample solution on Visual Studio 2008, let's say, I have this: myWebSite project (web site project) myLibrary project (library project) myWebsiteDeploy project (web deployment project) ...
3
votes
3answers
177 views

How do I open a file whose full name is unknown with Perl?

I want to know if there is anything that lets me do the following: folder1 has files "readfile1" "f2" "fi5" The only thing I know is that I need to read the file which starts with readfile, and I ...
3
votes
2answers
265 views

perl - file handling

I have a list of files on host machine say in directory /src/. The directory has more subdirectories. now this directory is copied onto remote machine after mounting. Now the files are preset in ...
3
votes
1answer
159 views

Difference between '>>' and '>' in Perl

What is the difference between these two code snippets? open (MYFILE, '>>data.txt'); open (MYFILE, '>data.txt');
3
votes
5answers
1k views

feof() in C file handling

I am reading a binary file byte-by-byte,i need determine that whether or not eof has reached. feof() doesn't works as "eof is set only when a read request for non-existent byte is made". So, I can ...
3
votes
6answers
404 views

Why am i getting this warning in “if (fd=fopen(fileName,”r“) == NULL)”?

FILE *fd; if (fd=fopen(fileName,"r") == NULL) { printf("File failed to open"); exit(1); } This is a code snippet. When I compile it with gcc, i get the following warning:- warning: ...
2
votes
2answers
38 views

How to handle lots of application resources in .net application?

I'm developing a wpf app which contains a dashboard with buttons ordered by category. Each button opens a resource, this can be a PDF, a video, etc. In total there are 12 categories with 60 subjects ...
2
votes
3answers
55 views

Exists, Read and Write in just one step

I'm trying to find out if a file exists, if it does, verify if the css style already exists, if not, write them at the end of the file ... I'm doing all this already but in 3 steps: Does the file ...
2
votes
4answers
222 views

File handling in java

I have the below code. The below source code is from the file x.java. The hi.html is present in the same directory as x.java. I get a file not found exception even though the file is present. Am I ...
2
votes
2answers
316 views

expected declaration specifiers or ‘…’ before ‘FILE’ problem

I am writing code in c. I am declaring a FILE* fp at the main fucntion (main.c). We have other files at the project too. So at a header file I am getting this error: "expected declaration specifiers ...
2
votes
2answers
403 views

How do I clear the whole contents of a file in C?

I have a file with some of user1's data. I want to use the same file for user2 by clearing the content of the file. My idea is that when a new user comes, data of the previous user should be clear ...
2
votes
1answer
158 views

ssh problem - no such file or directory

I have a script in remote host which I run as ./test /a/b/c/f and it runs perfectly fine on the maching. Now I am on host machine, I run the same script as ssh root@dst "./test /a/b/c/f" and this too ...
2
votes
1answer
282 views

How to create a file in remote host along with the creation of directory using ssh

I have a file say /a/b/c/file in my host. I want to create a file on remote host in directory say dest. Now the question is, how do I create a file in remote host as /dest/a/b/c/d/file using perl ...
2
votes
2answers
473 views

How do I load resource using Class Loader as File?

I want to open files using the class loader. However I always get a FileNotFoundException. How do I create a new File using the URL? I don't want to open it as a stream just as a file. URL url = ...
2
votes
4answers
887 views

C: The remove function removes all files?

I am using something like this: char *file; file = (char *)malloc(BUFSIZE * sizeof(char)); printf("Enter the filename:"); scanf("%s", file); if(remove(file)) { printf("Error while removing"); } ...
2
votes
3answers
177 views

Why is this program not showing the first line again and again?

#include <stdio.h> #include <stdlib.h> #include <string.h> char *readLine(FILE *inFile) //Simply reads line in a text file till "\n" { char *line = realloc(NULL, 1); char ...
1
vote
0answers
64 views

file handling using c++with openmp

I am using openmp in c++ for parallel processing. File size being handled is of about 40GB. while simple searching of string from other file in this large file is taking very long time as a string ...
1
vote
2answers
55 views

Text File Handling with SQL Database - Visual Basic

I have a text file contains delimited records. 1243;jhhf';982u4k;9u2349;huf8 kij;9238u;98ur23;jfwf;03i24 I need to replace the value of 4th part of every record with the value returned from SQL ...
1
vote
2answers
46 views

how access to a file concurrently to add/edit/delete the data?

I want to create a text file, add data line by line into the file. If a data line already exist in the text file ignore it and make the file grow line by line.
1
vote
1answer
41 views

finding specific values from file using java

I have JSP file with some code <div id="ListDiv" **class="ListDiv"** style="overflow: auto; visibility: visible"> <table width="100%" border="0" cellspacing="0" cellpadding="0" ...
1
vote
2answers
94 views

Reading or writing multiple files using vhdl textio

I have successfully written a vhdl code to read and write a file. Basically I read a file, process the data in the file and write the results to another file. Now I want to extend my program to ...
1
vote
1answer
22 views

How to list the used file-numbers in VB.NET 3.5?

Does anybody know how to enumerate the used file-numbers [as in FileOpen(filenum, ...)] in Visual Basic .NET 3.5 (VS2008)? The situation is: I'm doing "a quick port" (just to bring it up a supported ...
1
vote
5answers
116 views

C# - How to list the files in a sub-directory fast, optimised way

I am trying to list the files in all the sub-directories of a root directory with the below approach. But its taking much time when the number of files are in millions. Is there any better approach of ...
1
vote
3answers
112 views

C# - How to proccess data from Process.StandardOutput when the data is around 400 MB

I am trying to retrieve list of files from a server with the windows command - "DIR /S/B" The output is huge (around 400 MB). Now when I tried retrieve it with below approach, its taking hours to ...
1
vote
3answers
50 views

To print a line within the quotes from a text file in java

I'm trying to print the text within the quotes in a file. May I have anyone to help me. E.g : "Jayaramachandiran" This line is in a text file,and I wanna read it and print it.
1
vote
1answer
99 views

Writing files on Client Side

I have a JavaScript code that is capturing mouse co-ordinates(X, Y and timestamps) from UI. I want to write this information into a file (xml/.txt etc.)so that it can be used for further processing ...
1
vote
2answers
61 views

Generate Event after reading file

I want to raise the some event in Java after finishing the reading of file so that the handler can catch the event and proceed to next task .I am not able to find the existing event in Java which ...
1
vote
2answers
82 views

Trouble implementing a (stable) method of retrieving n bytes from file

One of the purposes of the library of which I am developing is to retrieve a specified amount of bytes from a file, in this specific case I am wishing for access to /dev/random to retrieve entropy ...
1
vote
8answers
173 views

Speed Tradeoff: Frequently Reading from file vs storing it using dynamic memory

I am writing a C program which involves reading a image file and reading each pixel of image just once. So should i read file once using fread() and store it in some dynamic variable(heap variable) or ...
1
vote
1answer
2k views

Deleting files using CodeIgniter?

I'm not sure if this is the proper function to delete a single file (say an image) using CodeIgniter. $this->load->helper('file'); delete_files('path') ...
1
vote
2answers
78 views

How a class that wraps and provides access to a single file should be designed?

MyClass is all about providing access to a single file. It must CheckHeader(), ReadSomeData(), UpdateHeader(WithInfo), etc. But since the file that this class represents is very complex, it ...
1
vote
1answer
538 views

Handling many image files in scrollview on iPhone similar to photos app

So I've seen this question asked before and in fact I asked it last night but I thought I'd give it another go just to see if I could get any other unique views on the problem. The Problem — I have ...
1
vote
3answers
183 views

file handling routines on Windows

Is it allowed to mix different file handling functions in a one system e.g. fopen() from cstdio open() from fstream CreateFile from Win API ? I have a large application with a lot of legacy code ...
1
vote
4answers
198 views

Perl: opening a file, and saving it under a different name after editing

I'm trying to write a configuration script. For each customer, it will ask for variables, and then write several text files. But each text file needs to be used more than once, so it can't overwrite ...
1
vote
3answers
244 views

Function to read files one by one in a directory

I am implementing an SMTP-sender in C which is supposed to read a file from a directory whenever it is created, process data and delete the file. How can I implement this polling function which ...
1
vote
2answers
2k views

Unix: seeing file handles like with “lsof -l”

I did the commands (source): $ exec 3>/tmp/thirdfile $ exec 4>/tmp/fourthfile $ echo drib >&3 $ echo drab >&4 $ echo another drib >&3 $ echo another drab >&4 $ exec ...
1
vote
3answers
177 views

How to serve a MVC-view with image paths from directory?

I'm kind of new to the whole MVC concept, since I just recently started developing a web site using CakePHP framework. Therefore I turn to you asking for how to achieve the following in a ...
1
vote
3answers
1k views

How do I add a file browser inside my Java application?

I am new to Java progamming and am building a application that will add, display and remove files from a given folder location. I have added files using JFileChooser and know how to delete the files. ...
0
votes
2answers
19 views

File operation functions return, but are not actually committed when Windows shuts down

I am working on an MFC application that can (among other things) be used to shut Windows down. When doing this, Windows of course sends the WM_QUERYENDSESSION and WM_ENDSESSION to all applications, ...

1 2 3