Tagged Questions

6
votes
5answers
1k views

Directory vs DirectoryInfo

Are they equavalent? Are they alternative? Is one of them depricated one other? Which one is working better in a ASP.NET web app. sepcially when I was to extract all files of a specific driectory ...
4
votes
4answers
587 views

DirectoryInfo.Delete(True) Doesn't Delete When Folder Structure is Open in Windows Explorer

Assuming I have a folder structure like: C:\MyTemp - MySubFolder If I try to delete this using: Dim path As String = "C:\MyTemp" Dim di As System.IO.DirectoryInfo di = ...
4
votes
2answers
3k 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 ...
3
votes
6answers
1k views

What is the best method to find the newest last modified time of a folder of files?

I have a folder with subfolders of files. I would like to get the newest filename by modified time. Is there a more efficient way of finding this short of looping through each folder and file to ...
2
votes
1answer
32 views

Can i get DirectoryInfo from FTP Server without FtpWebRequest

I was answering a Question about how to show a directory structure on FTP Server, therefor it was needed to use System.IO.DirectoryInfo[]. Is there any easier way to get DirectoryInfo[] from ftp ...
2
votes
1answer
60 views

Comparing two folders - Template versus actual

I am trying to compare a template folder with subfolders with an existing directory structure. I am trying to recursively iterate through all the sub folders in each directory. My code is as follows. ...
2
votes
0answers
84 views

C# code to set a remote share to inherit permissions from its parent directory

I have two machines, call them client and server, in a Windows domain. The server has a shared directory which can be accessed from the client machine. I want to run a C# application on the client ...
2
votes
1answer
105 views

.NET Junction Directories and DirectInfo issues

I am trying to access information under C:\Users\Public\Documents\ which displays as C:\Users\Public\Public Documents\ on explorer. Is there a way to be able to access the DirectoryInfo of a ...
2
votes
1answer
841 views

Problem setting file system access rule

In my app on local network, any user should create a directory on shared folder using this code. test1 is the name of one of the user's folder for example. DirectoryInfo di = new ...
2
votes
3answers
329 views

Renaming a directory locks renamed dir the second time I want to rename

I'm having problems with renaming a directory multiple times, it seems to lock the file. // e comes from a objectListView item DirectoryInfo di = (DirectoryInfo)e.RowObject; DirectoryInfo parent = ...
2
votes
1answer
322 views

Application Settings + DirectoryInfo/FileInfo

I'm still new to C#... I'm building a WPF application and I'm trying to apply some User Application Settings. It's easy to insert standard App Settings (int, double, string, etc). I've even got ...
2
votes
3answers
3k 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 ...
1
vote
5answers
116 views

C# - How to list the files in a sub-directory fast, optimised way

I am trying to list the files in all the sub-directories of a root directory with the below approach. But its taking much time when the number of files are in millions. Is there any better approach of ...
1
vote
2answers
162 views

Check if DirectoryInfo.FullName is special folder

My goal is to check, if DirectoryInfo.FullName is one of the special folders. Here is what I'm doing for this (Check directoryInfo.FullName to each special folder if they are equal): ...
1
vote
1answer
300 views

DirectoryInfo throws “Argument Exception: The path is not of a legal form” for the correct path

When I use DirectoryInfo with a specific path (say @"C:\") in my ASP.NET MVC application, it returns ok but when I try to use the exactly same path in my external C# library, it throws the above ...
1
vote
1answer
515 views

How to refresh System.IO.DirectoryInfo.GetFiles().Length

I'm having trouble with getting the uptodate amount of files in a directory. The files are being printed from PDFCreator and being sent to that folder. When the number of files in the folder match the ...
1
vote
2answers
343 views

DirectoryInfo accessing a virtual folder

I'm trying to use DirectoryList on a virtual directory, to build up a list of files. However I get the error; URI not supported Is there an alternative to this that supports URLs? Here's my ...
1
vote
2answers
247 views

How to select a folder relative to root in asp.net website?

I am trying to select all the files from a folder in my website and store them in a collection. The problem is that when I run the website it is not selecting the folder in my website: This is the ...
1
vote
2answers
252 views

Understanding a boolean on DirectoryInfo.Exists

var fileOpen = new OpenFileDialog(); var clickedOk = fileOpen.ShowDialog(); if (!((bool) clickedOk)) return; var path = fileOpen.FileName; var diPath = new DirectoryInfo(path); var fiPath = new ...
1
vote
1answer
2k 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
2k 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
764 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 ...
1
vote
2answers
297 views

recording all the files in a large directory

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 ...
0
votes
3answers
80 views

Find if a directory has a parent

private void anotherMethod() { DirectoryInfo d = new DirectoryInfo("D\\:"); string s = included(d); ... // do something with s } private string included(DirectoryInfo dir) { if (dir ...
0
votes
2answers
170 views

How to search for Files using GetFiles method (multiple criteria..)

The code below obviously searches a directory for Files that contain the word "FINAL" but what I'm wondering is can I add to its search criteria? I have a Well_Name and Actual_Date strings that I ...
0
votes
0answers
463 views

Using DirectoryInfo[] to list directories and their contents

This is going to take a while to explain but bear with me. I'm automating the creation of project and lead records in our database based on the existence of sub directories at a certain path. The ...
0
votes
2answers
333 views

Files in Watch Directory being locked while using DirectoryInfo

I have been monitoring files in a directory on the network. I had initially used FileWatcher to monitor them. I found that the files were being locked while using FileWatcher so I changed my ...
0
votes
2answers
139 views

dirInfoObj.GetFiles(“*.jpg,*.png”) does not return any files

If I do simply dirInfoObj.GetFiles("*.jpg") , it will return the 2 jpg's I have there. But if I try and get both jpg's and png's, like dirInfoObj.GetFiles("*.jpg,*.png") , it won't return ...
0
votes
2answers
249 views

Combine two (or more) FileInfo's

I have something similar to this: var d1 = new DirectoryInfo(Path.Combine(source, @"bills_save." + dt)); var d2 = new DirectoryInfo(Path.Combine(source, @"reports_save." + dt)); var f1 = ...
0
votes
5answers
261 views

Why isn't this DirectoryInfo comparison working?

var dirUserSelected = new DirectoryInfo(Path.GetDirectoryName("SOME PATH")); var dirWorkingFolder = new DirectoryInfo(Path.GetDirectoryName("SAME PATH AS ABOVE")); if (dirUserSelected == ...
0
votes
2answers
181 views

Using DirectoryInfo in C#

If there a more efficient way to do the following: DirectoryInfo di = new DirectoryInfo(@"c:\"); newFileName = Path.Combine(di.FullName, "MyFile.Txt"); I realise that it’s only two lines of code, ...
0
votes
2answers
559 views

Set NTFS Permissions with DirectorySecurity after created Active Dirctory Groups

I am a little confused about setting NTFS Permissions to a directory after I created Active Directory Groups (both programmatically). When I created the Active Directory Objects then I have to wait a ...
0
votes
2answers
402 views

How do I compare one collection of files to another in c#?

I am just learning C# (have been fiddling with it for about 2 days now) and I've decided that, for leaning purposes, I will rebuild an old app I made in VB6 for syncing files (generally across a ...