0
votes
1answer
23 views

File.open works when getting an argument at runtime, but not when getting an argument from the command line

If I enter a file name without passing it in the command line (E.g. ARGV would be empty) everything works fine, but if I pass it an argument in the command line I always get a File or directory does ...
0
votes
1answer
47 views

Why is my file-like class only returning empty strings after the first call to readline?

I've created a small class to add a layer of encryption on top of python's tempfile.TemporaryFIle. My first call to readline returns a line (as expected), but all subsequent calls to that function ...
-2
votes
2answers
54 views

_findfirst failure with .. path

Why _findfirst returns -1 with ..\*.txt search pattern struct _finddata_t c_file; hFile = _findfirst("..\\*.txt", &c_file); But processes ..\* correctly?
0
votes
3answers
54 views

Write real time data to file

How to write real time data to file in Java? I'm trying to get real time twitter feed to text file. Here is a code that I have written: public void onStatus(Status status) { User user = ...
-2
votes
1answer
40 views

Getting integers from text file and work on array list in java [closed]

I have text file which is contains:" I have 3 apples and 1 banana.All people have 4 cars at least." I want to read this .txt file and get integers from it.I will strore integer variables in ...
-3
votes
1answer
16 views

Difference between SKIP_SIBLINGS and SKIP_SUBTREE [closed]

Is anybody aware of the difference between these two FileVisitResult? Directly from this oracle tutorial: SKIP_SUBTREE – When preVisitDirectory returns this value, the specified directory and ...
1
vote
0answers
27 views

About resolve method of the java.nio.Path

I thoroughly understand the use of resolve(path) and relativize(path). In the following snippet though there is something which is not very clear to me: public FileVisitResult preVisitDirectory(Path ...
-1
votes
4answers
61 views

Java I/O issue when dealing with files

I'm currently learning Java I/O , when I compile this code : import java.io.File; public class Main {public static void main(String[] args){ //Creation of the File object ...
0
votes
1answer
43 views

How to check if I can delete a file?

How can I check that I can delete a file in Java? For example, I should be able to delete file C:/file.txt but I never will be able to delete the C:/ or Computer, or My Documents etc. Solution ...
-5
votes
1answer
38 views

File I/O Concept [closed]

I'm new in java. My assignment requires using the File I/O Concept The Problem Is when I run the code for the second time, it makes the file new and the clear, I want to write the new data with the ...
0
votes
1answer
72 views

No output when reading file in textarea

I have modified this example to read txt files in a text area, but I seem to get no output in the textarea. My code: if (returnVal == JFileChooser.APPROVE_OPTION) { File file = ...
1
vote
1answer
36 views

Ruby create and open file with ::expand_path and create directory with ::expand_path

I'm just beginning to learn file IO with Ruby, and had a question about being able to use ::expand_path to direct to a path separate from where my program is running. Here is what I essentially ...
-2
votes
1answer
54 views

Program does not save File

I am not putting all my classes here but here is: CheckOptionPanel package main; import java.io.*; import javax.swing.*; import java.awt.event.*; import java.awt.*; import javax.swing.JOptionPane; ...
-5
votes
2answers
52 views

How do I sum up the data in a file in Java? [closed]

I have previously done my research and I couldn't find anything that could help me. I have a file which has a persons name and then their grades next to it. I want to take the grades for each name and ...
-2
votes
2answers
47 views

Writing to a file with RandomAccessFile#write() [closed]

lets say i have a program that makes a binary file called data.bin and i write a bunch of random information to it using data.write(item) like: RandomAccessFile data = new ...
-1
votes
2answers
64 views

how to update the contain in .txt file java [closed]

for example i have the file named file.txt which contain personal information (id,name, salary): A123 Anna 3000 A234 Alex 4000 A986 Jame 5000 How can I write a java code that allow user to enter an ...
0
votes
2answers
26 views

Save input to a file

I'm building a command shell, and in this command shell I want to save every command i write to a file. I read commands Like this: BufferedReader console = new BufferedReader(new ...
0
votes
4answers
233 views

C# file is being used by another process

I am not sure how can I solve my problem. From time to time I get the error: "The process cannot access the file 'xxxx' because it is being used by another proces". Here is my method where the error ...
0
votes
0answers
13 views

Android Creating Output Files To Extract Them From PC

I am trying to make an android app that will create some records in simple text files such that a computer can access those file. I think I understand the process of creating and writing files ...
0
votes
0answers
28 views

Maximize memory for file cache or memory-based file system on Windows?

I have an application which needs to create many small files in maximum performance (less than 1% of them may be read later), and I want to avoid using asynchronous file API to keep the simplicity of ...
3
votes
4answers
102 views

Confused by python file mode “w+”

From the doc, Modes 'r+', 'w+' and 'a+' open the file for updating (note that 'w+' truncates the file). Append 'b' to the mode to open the file in binary mode, on systems that differentiate ...
1
vote
2answers
75 views

How do I (re)write bytes in the middle of a file?

I have a case where there are a block of bytes in the middle of a file that need to be shuffled. Currently the implementation reads the file, shuffles the bytes in memory, then outputs the whole file. ...
-1
votes
2answers
47 views

How do I put values from a file into a string and calculate the values in Java?

I have a .csv file and I understand how to read it in Java, my problem is I want to be able to put the values of what is inside the file into a string and then read the string so I can calculate these ...
0
votes
2answers
35 views

How do I get values out of my file in Java and calculate them?

Okay, so I have this piece of code to take my .csv file which has these values in it. Alice Jones,80,90,100,95,75,85,90,100,90,92 Bob Manfred,98,89,87,89,9,98,7,89,98,78 I want to take the names ...
0
votes
3answers
34 views

Error while trying to read file in jar

I am trying to read an xsd file to validate schema. My schema is in location x/y/z/test.xsd My class reading this file is also in x/y/z/ReadSchema.java Both there are packaged in my jar. I am ...
-1
votes
1answer
34 views

Basic exception - Java [closed]

I am studying for my final exam in Java OOP and something my prof mentioned was... Know how to write a simple exception yourself. Should know how to throw exceptions, delegate them. ...
0
votes
0answers
49 views

Java not saving an object to a .dat file?

I'm making an object named core, which is an object of the Core class, and i want to save the object core to a .dat file. here is how i'm saving it: public static boolean save() { try { ...
1
vote
2answers
34 views

Python, How to do deleting work in a file?

I know the position of file pointer,and I want to delete the preceding char. Of course I can create another file,writing in the left content,which is not the way I want. In other word,I want to do ...
0
votes
1answer
46 views

What are the consequences of not closing open files in Python? [duplicate]

I've seen that the best practice for working with files in Python is to use the with block: with open('file', 'r') as fi: text = fi.read() with open('file', 'w') as fi: fi.write(text) This way ...
7
votes
2answers
129 views

Java File IO performance dropped over 30% when adding lots of JARs into classpath

Test Code: import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; import java.util.Map.Entry; public class ReadLine { /** * @param args * @throws ...
0
votes
1answer
95 views

BeautifulSoup, parsing and writing the data in a text file

from bs4 import BeautifulSoup soup = BeautifulSoup(open("youtube.htm")) for link in soup.find_all('img'): print link.get('src') file = open("parseddata.txt", "wb") ...
0
votes
0answers
35 views

C# Copying Resources / Making a Installer

I want to make a Installer, that copies the Resources (from Resources.resx) to a specific location. It works kind of, it copies the Files, but without file extensions. Here is the code: ...
0
votes
1answer
24 views

Opening file through a pipe

I'm trying to write a program that allows me to type something like this on the command line: cat inputfile | myprogram outputfile In myprogram I need to open both the input and output file without ...
1
vote
0answers
35 views

File getting truncated while conversion

When I am converting a folder with many files from ANSI(windows-1252) to UTF8, some of the files are getting truncated while a file with small size was completely blank. I tried converting the files ...
0
votes
4answers
52 views

Ideal way to read, process then write a file in python

There are a lot of files, for each of them I need to read the text content, do some processing of the text, then write the text back (replacing the old content). I know I can first open the files as ...
0
votes
1answer
131 views

How to calculate sha256 file checksum in Go

I need utility for Windows that calculates sha256 file checksum so that when I download fedora I can verify checksum from here: https://fedoraproject.org/static/checksums/Fedora-18-i386-CHECKSUM ...
-1
votes
1answer
82 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 ...
-3
votes
2answers
48 views

Writing to current file [closed]

I was trying to see if there is any way to write to the current file, in which code is being executed. This is the code I wrote: with open(__file__, 'r+') as f: f.write('abc') It does not ...
0
votes
1answer
64 views

C++ iteration, file i/o

#include <iostream> #include <fstream> #include <string> #include <vector> #include <stdlib.h> using namespace std; int main() { //Input .txt file ifstream ...
1
vote
3answers
96 views

LISP: How to read content from a file and write it in another file?

I want to write a function that has as arguments the names of the two files and copies the content from the first file to the second one. So far I wrote a function that reads from a file: (defun ...
0
votes
1answer
22 views

Passing String to batch variable and File creation

Can we pass a String to defined batch variable dynamically? Like defined in the following: Enter your Organization name: Enter your Name: |> Press Enter echo %%Org_name >> Org_name.txt echo ...
1
vote
3answers
71 views

download a folder from the given url using java

I am trying to copy a folder from server to local system but dont know how I have written the code to copy the file from server but confused to copy the complete folder . For copying a file i am using ...
0
votes
1answer
127 views

In ruby, file.readlines.each not faster than file.open.each_line, why?

Just to analyze my iis log (BONUS: happened to know that iislog is encoded in ASCII, errrr..) Here's my ruby code 1.readlines Dir.glob("*.log").each do |filename| ...
0
votes
4answers
68 views

java.io.FileNameFilter

interface FilenameFilter { boolean accept(File dir, String name); } As Far as I know FileNameFilter is used to select files based on specific pattern or extension. For that 'String name' alone ...
0
votes
0answers
57 views

How do I copy the contents of a file and then clear it in C?

I'm new to C, so bear with me. I want to read in the contents of a file, encrypt the contents, and write them back to the file. What function would be best for taking each word in the text file and ...
0
votes
1answer
44 views

Java sockets and file Streaming

I have a basic question on files ... It seems that I am stuck. I am creating a server-client socket. The client sends a random number of integers to the server using an iterative way and the methods ...
0
votes
1answer
40 views

What exactly is a Link(Symbolic or otherwise)

I was working on a java project with NIO.2 and I encountered the Files.createLink method. Upon doing some research on The Java Tutorials I found that these seem similar to windows shortcuts, but I'm ...
0
votes
1answer
86 views

Reading From File in Python

I was wondering if somebody could help me out with the following Python 3 code. For some reason it is not doing what I believe it should be doing and I cannot understand why. with ...
0
votes
2answers
117 views

Populate dictionaries from text file

I have a text file with the details of a set of restaurants given one after the other. The details are name, rating, price and type of cuisines of a particular restaurant. The contents of text file is ...
-1
votes
4answers
100 views

How to delete everything in a folder with C# [duplicate]

I need a function to clear the entire content of a folder. ASP.Net cannot delete folders if the folder is not empty.

1 2 3 4 5 14