0
votes
5answers
42 views
Java: Most efficient way to store/retrieve workout information from a file?
I'm working on a Java project for class that stores workout information in a flat file. Each file will have the information for one exercise (BenchPress.data) that holds the time ( …
0
votes
1answer
26 views
Batch File to Delete Folders
I found some code to delete folders, in this case deleting all but 'n' # of folders.
I created 10 test folders, plus 1 that was already there. I want to delete all but 4.
The code …
3
votes
4answers
72 views
To Compress a big file in a ZIP with Java
I have the need to compress a one Big file (~450 Mbyte) through the Java class ZipOutputStream. This big dimension causes a problem of "OutOfMemory" error of my JVM Heap Space. Thi …
0
votes
1answer
27 views
Overwriting an Open File in Windows
In what situations does Windows allow you to overwrite an open file? Is that ever allowed? This includes renaming a different file to the same name as an open file.
0
votes
1answer
18 views
Visual Studio Shortcut/Alias In .csproj
Within Visual Studio I'm pretty sure there is a way to "alias" a file among several projects. So in other words the actual file lives in only one place within the file system but h …
1
vote
5answers
57 views
How to write into a file in PHP?
Hello everybody!!!
I have this script on one free PHP-suppoting server:
<html>
<body>
<?php
$file = fopen("lidn.txt","a");
fclose($file);
?>
</body>
& …
0
votes
2answers
61 views
Java: Why isn’t my file writing working?
I'm trying to write a file from my Java program, but nothing happens. I'm not getting any exceptions or errors, it's just silently failing.
try {
File outputFi …
3
votes
4answers
113 views
Read first N lines of a file in python
We have a large raw data file that we would like to trim to a specified size.
I am experienced in .net c#, however would like to do this in python to simplify things and out of int …
18
votes
7answers
236 views
Remove Duplicates from File
Hi,
The input file having records as : 8712351,8712353,8712353,8712354,8712356,8712352,8712355
8712352,8712355
I need to remove duplicate from the above file and write to an outpu …
0
votes
2answers
21 views
iPhone + file upload control
Hello,
I have an application which uploads file from iPhone to web server.
Problem is that I want to give users a control like from which they can select the file / photo from th …
7
votes
4answers
66 views
How to know what file is opened by an application at any time?
Hi, I'm new here, so I don't have the time to contribute before I ask for u guys' help, so pardon me for that.
I'm not sure if this can be done, but I would like to find out the o …
1
vote
5answers
60 views
Server crash due to ASP.NET-Page (C#)
My local test server crashes as soon as I'm trying to write to a logfile. I'm using this for an ASP.NET-Page, codebehind is C#.
Structure:
/
Functions.cs
index.aspx
index.aspx …
1
vote
1answer
26 views
Display an image in WPF without holding the file open
I'm working on an image management app in WPF that displays a number of images and allows the user to move them around the file system. The issue I've run into is that displaying …
1
vote
6answers
122 views
Most efficient way to create and write multiple 10 KB text files?
We're using the following approach to writing out text files:
public void WriteFile(string filePath, string contents)
{
if (string.IsNullOrEmpty(filePath)) { throw new Argumen …
1
vote
6answers
166 views
How can I parse the following text file?
Hi,
I'm pretty new to c#. Can somebody please give me the right direction on how can I parse the following text file?
The program I am trying to implement will do the following:
…
