Tagged Questions

1
vote
3answers
137 views

StreamReader, C#, peek

Hello, I have a StreamReader that once in a while check if it has more to read from a simple text file. It uses peek property. The problem is that when I am using peek the positio …
0
votes
2answers
82 views

Rename image files on server directory

I need some help in renaming some images in a directory located at /images/graphicsLib/. All image names in /graphicsLib/ have naming convention that looks like this: 400-60947.jp …
0
votes
2answers
56 views

What’s the .Net replacement for File.Type FileSystemObject property?

In classic Asp we used the File.Type property to get the friendly name associated with a file type from the registry (e.g. "Text Document" for ".txt"). The FileInfo class which gen …
2
votes
3answers
450 views

Directory.Exists - UNC Path with Access Denied C#

I am writing some code to access directories and index the files it finds. The user is able to enter a UNC path and impersonate another user to get access to that directory. I am u …
0
votes
2answers
128 views

ASP.NET Logon Failure IOException with Response.WriteFile but not with File.Copy?

I'm attempting to send a file to the browser that is located on a remote host (via UNC). The web app is running both under impersonation and an App Pool with a user that has full …
7
votes
8answers
450 views

How do I check whether File.Delete() will succeed without trying it, in C#?

Hi, In C#, System.IO.File.Delete(filePath) will either delete the specified file, or raise an exception. If the current user doesn't have permission to delete the file, it'll rais …
4
votes
5answers
350 views

Better way to check if Path is a File or a Directory ? (C#, .NET)

I am processing a TreeView of directories and files, users can select either a file, or a directory and then do something with it. This requires me to have a method which performs …
1
vote
3answers
168 views

DirectoryInfo, FileInfo and very long path

I try to work with DirectoryInfo, FileInfo with very long path. I try use \\?\c:\long path (i got illegal caracter with fileInfo and DirectoryInfo) I try use file://c:/long path …
0
votes
3answers
213 views

Using the open file and save file dialogs in vb.net

Once a user has selected a file with the open file dialog, how can I handle this action? For example, if the user has selected a .txt file and has opened it, how can it get the dat …
1
vote
3answers
277 views

C# Winforms - Delete Folders on hard drive with specific file names?!?!

Hello! I want to be able to pass in the path of a folder to an application and have the program run through the entire contents of that folder, including nested folders and files, …
0
votes
3answers
144 views

File not found Exception.. But it’s there

Hey this is going to be one of those dumb questions. I am trying to pick up a file on my local system and I keep getting a FileNotFoundException thrown. Someone set me straight pl …
1
vote
2answers
149 views

System.IO Versus VisualBasic.FileIO

I typically develop in C# and am quite accustom to using System.IO. I recently ran across the FileIO library and have found that some of the advantages (such as sending an item to …
0
votes
2answers
115 views

output text file contents inline in an ASP.NET page

I have some HTML text files that I would like to dynamically include in an ASP.NET page. What is the best way to do this? My first guess was to create a Literal control on the pa …
2
votes
2answers
196 views

How to check if a file is in use?

Is there any way to first test if a file is in use before attempting to open it for reading? For example, this block of code will throw an exception if the file is still being wri …
0
votes
2answers
39 views

.NET - Reliably Maintaining File System from an Application

I have a mixed application that has data both in a database and in a physical file store maintained by my application. As I have been developing my application I have, on occasion, …

1 2 3 next
15 30 50 per page