Tagged Questions

5
votes
3answers
489 views

Directory.EnumerateFiles => UnauthorizedAccessException

There is a nice new method in .NET 4.0 for getting files in a directory in a streaming way via enumeration. The problem here is that if one wishes to enumerate all files one may not know in advance ...
4
votes
2answers
361 views

How to check if I can create a file in a specific folder in c#?

I need to know if I can create a file in a specific folder, but there are too many things to check such as permissions, duplicate files, etc. I'm looking for something like ...
3
votes
3answers
253 views

What is the best way to check file system capacity using .Net?

What is the best way in .Net to make sure a path as capacity to store a file. I need to makes sure I have room for the file before I download is becasue the source will not allow the file to be ...
2
votes
5answers
498 views

How can I determine if a subdirectory exists in C#?

In C#, how can one determine if a subdirectory exists? Is this neccesary when calling CreateSubDirectory?
2
votes
9answers
7k views

How to get all file attributes including author, title, mp3 tags, etc, in one sweep

I would like to write all meta data (including advanced summary properties) for my files in a windows folder to a csv file. Is there a way to collect all the attributes? I see mp3 files have a ...
1
vote
1answer
118 views

Directoy.Delete(path, true) -> IOException : the directory is not empty -> Different owners on Win7

On uninstalling, I get a IOException when trying to delete a directory. 'The directory is not empty'. I tried different methods, listed below, but nothing works. The files that are left behind (and ...
1
vote
2answers
566 views

How to know if a folder of file is being used by another process?

I know there are tens of questions already about "the file being used by another process". But they all have the problem of trying to read a file or write to a file that is already being used by ...
1
vote
4answers
354 views

Save documents as BLOB in SQL or on file system

For a (.net) web application I need to allow users to store many documents (pdf, .docx etc.). My first thoughts were to save all the documents as a BLOB in a SQL (Express) database. But how will my ...
1
vote
1answer
28 views

Free library for mounting *nix & mac file systems for .NET?

My application is Microsoft.NET 3.5, C#. It works with windows file systems using .NET API like File.Exists, Directory.GetFiles/GetDirectories, File.ReadAllText and similar. I need to have an ability ...
1
vote
5answers
329 views

Best .NET way to move many files to and from various directories?

I've created a program that moves files to and from various directories. An issue I've come across is when you're trying to move a file and some other program is still using it. And you get an error. ...
0
votes
2answers
29 views

Listing all sub directories in VB.net

can anyone tell me how to list all subfolders in vb.net. i want to put it on a listbox, i have created a code but it only search on the current location, and does not include subfolder. here is my ...
0
votes
3answers
137 views

File System - what is faster Renaming files, Changing an attribute in them or Moving them between folders

I'm developing a file system manager module, and wondering what will be a more efficient approach. This will be on a Windows machine with NTFS. The module will need to notify a different module ...
0
votes
0answers
74 views

.NET - with NTFS, calculate files space used + DIRECTORY/FOLDER size on disk

I have a .NET utility which creates a huge number of directories and files on my server, in order to test our storage algorithm for our application with load. I want a utility which can report the ...