Tagged Questions

6
votes
6answers
54 views

Transfer large data between .net applications on same computer

I have two .net applications that run on the same machine. The first application is the 'Engine'. It builds images - image's size is about 4M. The second applications is the 'Viewer'. It shows the ...
4
votes
2answers
369 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 ...
2
votes
5answers
535 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
1answer
270 views

Is it possible to read-lock a file?

I'm developing an application which checks for changes made to a file by a separate program (not written by me). If a change is detected, it opens the file, reads the last line, then closes the file. ...
2
votes
9answers
8k 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
134 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
627 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
1answer
73 views

Replacing file content without readers clients access interruption

There is a service which constantly writes new content to a file: using (var stream = File.Create(FileName)) // overwrites the file { stream.Write(data, 0, data.Length); } The file is ...
1
vote
4answers
208 views

Windows File system API to query large files

I have HDD (say 1TB) with FAT32 and NTFS partitions and I dont have information on which all files are stored on it, but when needed I want to quickly access large files say over 500 MB. I dont want ...
0
votes
0answers
44 views

C# File system on remote server in ActiveDirectory and Impersonation

This theme are not new. But I need help of some professional. I am making a windows form application which will run on local system(not domain's computer). The application would creating folder and ...
0
votes
0answers
34 views

Incorrect Function error while enumerating MFT

I have a C# application which enumerates USN data to get MFT records for getting a list of files on a volume. It uses DeviceIoControl function with various control codes to achieve the same. It works ...
0
votes
3answers
143 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 ...