Tagged Questions
-1
votes
1answer
49 views
Read a file and write to it while open [closed]
Do any of you know if it is possible to have a file open (say a .txt file) and still have your software write to it?, if so, what properties do you need to set?
-1
votes
0answers
34 views
Files: how to distinguish file lock and permission denied cases?
How to distinguish cases when file operation failed due to file lock and lack of permissions?
3
votes
1answer
67 views
Copy executing files from a UNC path
I am writing an application that needs to copy files from a network directory, where the files are currently executing.
I have tried opening the file with
using (var source = new ...
0
votes
0answers
59 views
Intermittent 'Could not find a part of the path' error upon file stream initialization
I've just moved some software to a new Windows 2012 server. The problem I'm troubleshooting relates to a Windows service that does background processing when it finds jobs to run.
In the first week ...
0
votes
3answers
35 views
Should I use binary/xml files in my .NET application?
I have worked as web developer for several years and have always used a database to store the information, or sometimes XML files.
Now I'm developing a small application (Windows form). This ...
0
votes
1answer
41 views
How to lock a file from editing in C#?
I've an idea to block a certain website between a time period, so on GUI I'll give input to block a website like facebook between 8AM to 4PM.
so what gonna do is whenever user select facebook from ...
1
vote
3answers
80 views
Excel: can only open file if using absolute path, why?
I have some trouble to understande why I´m getting an exception. I have something like this:
string path = "file.xls";
if (File.Exists(path))
{
Excel.Application xlApp = new Excel.Application();
...
4
votes
3answers
127 views
Create file in memory not filesystem
I am using a .NET library function that uploads files to a server, and takes as a parameter a path to a file. The data I want to send is small and constructed at runtime. I can save it to a ...
0
votes
2answers
78 views
Save file to ftp server
I'm creating a file uploader in asp.net and c#.
I just wanted to save that uploaded files to ftp server directly.
Is it possible? And if it is possible, how can I set that ftp server authentication ...
2
votes
1answer
73 views
Optimisation of INPUT OUTPUT
I am dealing with files where the number of lines can be at 60000 line.
These files are stored in perforce.
In order to calculate some statistics like number of lines added and number of lines number ...
0
votes
1answer
63 views
Tips for searching and replacing file contents in entire filesystem
I am in charge of developing an application for running on production servers and it aims to search and replace some specific string in every ini, xml and config file extensions and I must care about ...
0
votes
1answer
53 views
Looping file names
I am trying to loop through all the files in a folder and list only the ones that contain a certain text in their filename. For example, while moving a new file TEST.pdf in the folder X, if there is ...
0
votes
0answers
36 views
Locking on a string for file system access in a static extension method
I'm trying to make an efficient extension method that will allow both locked and concurrent access to the file system based on the generated file name for a data record.
I have read Locking on an ...
0
votes
1answer
182 views
The process cannot access the file \App_Data\ASPNETDB.MDF' because it is being used by another process.
When trying to publish our website on Windows Server 2008 R2, we are seeing the following error. Error 4 The process cannot access the file 'C:\Users\Student\Desktop\CSFP ...
1
vote
2answers
97 views
.Net: Is there a Dictionary to efficiently store/load its contents in a file?
In (VB).NET (4.0 framework), I'd need a Dictionary<string, string> that can efficiently store its contents, or better its internal representation to a file and load it later.
Ruby has such a ...
8
votes
3answers
226 views
Checking if a file is in use without try catch?
Is there a way I can check if a file is in use or is not opened by other process without just trying to open it and catching an exception? Is there no service method to test such a thing?
1
vote
0answers
65 views
Unknown temp file in C:/Temp/ generated by a .Net app which sends files to a remote web service
We are running a file sending app on a client server. The app convert files to ByteArray and send it to a web service.
At the beginning, we don't have the right to change C:/ Drive. The app comes an ...
2
votes
1answer
191 views
How do I get the name of the Font Family given the font file?
I have a set of font files with unpredictable filenames, so I can't deduce the real "Font Family" name from the file name. I need to therefore read the font metadata to extract the real "Font Family" ...
0
votes
2answers
41 views
How to change the last person to edit a file
Is there a way to change the last person to edit a file? I can get the last user to edit it with this code...
string FileLocation = @"C:\test.txt";
FileInfo droppedFile = new FileInfo(FileLocation);
...
2
votes
1answer
108 views
How to check for file contents in another file c#?
I know Basics of Read and Write file using StreamReader No idea about compare!!
As You can see in above Image I've two files Error file and archive file.. I need to compare
the 2nd column based on ...
-3
votes
1answer
139 views
Open html file using relative path
I have an html file I need to open.
I used this code
try
{
Process.Start("HelpPage.htm");
} catch (Exception ex) {
MessageBox.Show(ex.Message);
}
as you see I used the relative ...
-1
votes
1answer
22 views
.NET Copy File from Ressources
I want to output a File from my .NET program. For example a Image to be created in the same folder as the Executable.
I want the file to be included in the Program. Is there any way to do this?
0
votes
6answers
116 views
How to replace characters in a string?
I want to replace characters in a string content in file.
Below Dictionary shows the Key as unwanted character and i need to replace with the value in the Dictionary.
Dictionary<string, ...
0
votes
0answers
32 views
How to get LastWriteTime of a file inside zip package using System.IO.Packaging.ZipPackage?
As I understand, list of files of a zip archive can be obtained by GetParts() method that contains PackagePart objects.
Each PackagePart object has GetStream() method that returns Stream, ...
0
votes
0answers
39 views
How to recursively pack a directory and files into an assembly for later extraction?
I am developing a DLL (assembly) for later use in other .NET projects.
The DLL needs to be able to deploy a quite large directory structure with files (It's an offline copy of a website) to a local ...
1
vote
1answer
67 views
Locating data files used by a C# program in a common location regardless of runtime context?
A C# executable can reside in 3 different locations during it's life cycle when going from development to end user distribution:
{project directory}\bin\Debug
{project directory}\bin\Release
{end ...
4
votes
2answers
120 views
Is there a way to easily parse file paths in portable class libraries?
I'm needing to parse a path into parts from within a portable class library and get things like the filename, extension, just directory name, etc.
All of these methods are fairly easy to access from ...
1
vote
4answers
298 views
How to get absolute path of another project in a solution C#
I have a solution containing two projects. One project is just for doing all data stuff and the other one, the startup project, do all the web stuff.
Now I want to get the TasksDataBase.xml from ...
0
votes
0answers
126 views
How can i change remote file access permissions for local users on that remote machine?
I want to change remote file access permissions for local users on that remote machine (more specifically only remove existing access permissions).
Important- Can I achieve this without ...
0
votes
1answer
206 views
Windows 8 C# accessing a file from multiple places getting Access denied error
I am trying to save some data in a file but this file is getting accessed multiple times from different methods hence giving me access denied error. How can I apply lock on the following method to ...
1
vote
0answers
245 views
How to save a file to a shared folder in a server via WPF and C# [duplicate]
Possible Duplicate:
Copy file on a network shared drive
Access a Remote Directory from C#
How to pass credentials during writting file at server path?
How do I save a file into a shared ...
0
votes
0answers
74 views
Saving data obtained from a URL to disk using Javascript
I have searched google forever and all I find is different ways to save files to local disc - most of them of "Intermediate" or "advanced" level.
My problem is, I'm trying to write a javascript ...
0
votes
7answers
169 views
.NET issues with FileStream
I am trying to create a FileStream from a file with the following line:
Dim fStream As FileStream = New FileStream(destinationPath, FileMode.Create, FileAccess.Read)
When I do this, I get an error ...
1
vote
1answer
494 views
mvc 4 razor upload a file without submitting the page form
I am writing an MVC 4 app and need to allow the user to upload files, but don't want to submit the page's form when doing so. There is a bit of overhead in loading the whole form and I'd rather just ...
2
votes
3answers
214 views
How to read/write a specific number of bytes to file
I am looking to create a file by structuring it in size blocks. Essentially I am looking to create a rudimentary file system.
I need to write a header, and then an "infinite" possible number of ...
2
votes
1answer
65 views
Memory Consumed by an Idle File Stream
I want to create multiple File Streams and need to keep it open,there will be no I/O operations.What will be the memory consumption.If i create large number of such streams will this effect system ...
0
votes
1answer
331 views
Check sftp file transfer completed?
We have here a windows server and one day we will get via sftp some text files in a folder. I dont have more information, but maybe this is enough. Now I should write a function that is moving these ...
1
vote
5answers
347 views
Recursively delete files from a Directory but keeping the dir structure intact
For cleaning up the test files, am trying to do the below. But its not clearing the files as well as not generating an error.
Am I missing something obvious?
private void CleanUpTempDirFiles()
...
2
votes
4answers
2k views
How to find and replace text in a file in c#
My code so far
StreamReader reading = File.OpenText("test.txt");
string str;
while ((str = reading.ReadLine())!=null)
{
if (str.Contains("some text"))
{
StreamWriter write = new ...
2
votes
1answer
133 views
How to manually Lock a file for other applications
I have spent quite some time figuring out how to do this but did not find any usefull solution.
Here is what I want to do. I am generating a huge binary file in my application. The tricky thing is ...
1
vote
5answers
352 views
Log File Rotation IOException
I've got a log file rotation function that looks like this:
private static void RotateLogs()
{
FileInfo LogFile = new FileInfo(@"C:\temp\dataTransferErrorLog.txt");
if ...
0
votes
1answer
162 views
deleting a file generates Exception “could not find a part of the path”
I want to delete a Directory and all its files and it has files/Directories with a very long path.
The file I'm trying to delete has a long path (longer than 260).
How can i delete this file in spite ...
2
votes
3answers
446 views
Process.Start can't find an existing file
I have the path of an executable file (C:\Test\n4.TestConsole.exe).
File.Exists(path) returns true.
File.OpenRead(path) gets me its stream with no problem.
Process.Start(path) throws a ...
0
votes
0answers
65 views
Event based on Windows file locked error
I am trying to work out how I can create a dotnet event that fires when somebody tries to access a file shared on my computer that is locked (as shown in compmgmt.msc).
Does anybody know how I can ...
1
vote
0answers
22 views
Advice on properly handling the uploading of large files with .NET [closed]
I am working on a site where users may upload rather large files (up to 50MB). Several users could be uploading at the same time (most to be expected might be ~20, but usually would be 1-5).
We would ...
0
votes
1answer
35 views
Determining whether a dll is present or not
I want to use DotNet-dlls within VBA code. But I want to be able to determine whether a dll is present or not before I declare the object with CreateObject.
Is it possible to use a dotnet dll ...
1
vote
1answer
43 views
Does not .NET File.Move to a new dir cause data transfer?
We have an application that exports very large data files to a windows network share. We have a potential requirement to move that file to a different folder under the same share later in the ...
2
votes
0answers
303 views
Perforce P4API.NET Repository.GetDepotFiles() returns deleted files
I used the Perforce Repository.GetDepotFiles() and noticed that the function returns files that match the search pattern but also returns files that have been deleted in the Perforce Depot. How do I ...
0
votes
5answers
149 views
Execute code lines from a text file in C# [duplicate]
Possible Duplicate:
Is it possible to dynamically compile and execute C# code fragments?
I have a text file looks like:
AssembleComponent Motor = new AssembleComponent;
AssembleComponent ...
2
votes
3answers
72 views
Querying a XML FIle and creating a text file
I have a XML file :TableList.xml
<TableList>
<Table>
<TableName>TableA</TableName>
<Columns>ColumnA1,ColumnA2,ColumnA3,ColumnA4</Columns>
</Table>
...

