0
votes
1answer
192 views
C# - How to use DirectorySecurity.SetOwner() ? I’m having troubles
I'm having troubles figuring out the SetOwner() method.
In my case, i've created a user in Active Directory by code, then, I create a folder for the user, it all works ok, but I cannot set the newly …
1
vote
3answers
176 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 (i got uri not …
1
vote
3answers
78 views
Can certain File.IO objects in .NET (like DirectoryInfo) keep a removable device referenced even after programm termination
I have written a program in .NET that recurses through all files of a source and destination directory and its subdirectories, compares lastwritetime and copies/deletes files to/from the destination …
2
votes
2answers
543 views
C#: How to logon to a share when using DirectoryInfo
If I want to instantiate a DirectoryInfo object with an UNC path
DirectoryInfo myDI = new DirectoryInfo (@"\\server\share");
how can I pass a username / password that is required to access that …
1
vote
3answers
367 views
C# DirectoryInfo.getFiles begining with
I've come across some strange behavior trying to get files that start with a certain string.
Please would someone give a working example on this:
I want to get all files in a directory that begin …
0
votes
3answers
156 views
Find matched directories using a list of regular expressions
I have an IEnumerable<DirectoryInfo> that I want to filter down using an array of regular expressions to find the potential matches. I've been trying to join my directory and regex strings …
0
votes
1answer
622 views
How do you implement a IEqualityComparer<T> in VB.NET?
I have the following function that loops through a directory and checks for a specified folder and file:
Private Function VerifyPath(ByVal root As String, ByVal folder As String, _
…
2
votes
5answers
429 views
Is there an async version of DirectoryInfo.GetFiles / Directory.GetDirectories in dotNet?
Is there an asynchronous version of DirectoryInfo.GetFiles / Directory.GetDirectories in dotNet? I'd like to use them in an F# async block, and it'd be nice to have a version that can be called with …
1
vote
2answers
94 views
recording all the files in a large directory
Hi,
I've got a number of directories with a large number of files in them (~10,000). I want to create a list of these files in my app, and have already threaded the io access so that the app doesn't …
1
vote
3answers
969 views
DirectoryInfo.GetDirectories() and attributes
I am using DirectoryInfo.GetDirectories() recursively to find the all the sub-directories under a given path.
How ever I want to exclude the System folders and there is no clear way for that.
In …
