Tagged Questions
The .NET DirectoryInfo object contains detailed information about a directory on the filesystem.
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 ...
5
votes
3answers
4k 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 ...
4
votes
4answers
582 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
3answers
1k views
.NET - Check if directory is accessible without exception handling
I need to go through various directories on the computer (via DirectoryInfo). Some of them aren't accessible, and UnauthorizedAccessException occurs. How can I check directory access without catching ...
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 ...
4
votes
5answers
1k 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 ...
3
votes
1answer
136 views
Filter DirectoryInfo files by date in asp.net
I am populating a datagrid control using files in a specified path (DirectoryInfo).
I would like to filter the files based on a user specified date range (start date & end date).
While search ...
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
29 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
59 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
1answer
71 views
Displaying selective columns in an asp.net gridview
This is a follow up to my previous question: Filter DirectoryInfo files by date in asp.net
I have a gridview that is populating data from DirectoryInfo.
However, I only want to display certain ...
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
832 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
327 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
321 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
1answer
45 views
ASP.Net DirectoryInfo records to be sorted and filtered
I want to meger two lines of code but I can't seem to figure it out.
Dim filterFiles As FileInfo() = New DirectoryInfo(sPath).GetFiles().Where(Function(x) x.LastWriteTime >= (dtStartDate) ...
1
vote
2answers
110 views
Sorting files from directoryinfo by date in asp.net
how can I sort (not filter) directoryinfo files by date (oldest to recent) ?
I am using asp.net and visual studio 2008
1
vote
5answers
115 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
157 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
104 views
Can I resolve a DFS path with DirectoryInfo?
Is there a way to resolve a DFS path directly with DirectoryInfo?
I found this answer: How can I get an active UNC Path in DFS programatically ... is this really my only option?
1
vote
1answer
296 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
511 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
328 views
How can i get all files without file extension into an array
How can i get all files without file extension into an array. I will supply the folder path.
Is this possible using Directory.GetFiles() or DirectoryInfo.GetFiles()?? Is there any alternative way?
I ...
1
vote
2answers
341 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
245 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
482 views
how do you convert a directoryInfo file to string
Problem is that i cant convert to string
Dim path As String = "..\..\..\Tier1 downloads\CourseVB\"
If countNumberOfFolders > 0 Then 'if there is a folder then
' make a reference to a ...
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
282 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 ...
1
vote
3answers
763 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
1answer
3k 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, _
...
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
2answers
38 views
how to get specific files from a folder in asp.net (vb.net)
I want to get all the files from a folder using DirectoryInfo, how can i perform check and get all the images from the folder,
For checking i want to pass a productid as all the images are saved with ...
0
votes
2answers
61 views
FileInfoComparer not sorting correctly (on LastWriteTime)
I have a simple (ASP.NET) web page that lists files of a particular type in a folder and renders them in a ListView.
I've tried to sort them by descending LastWriteTime, that is, in reverse date ...
0
votes
1answer
35 views
DirectoryInfo.Exists always returns false during MSTest
I have a little bit of logic at the boundary of my app dealing with creating directories. I would like to test that it actually creates directories as expected, but the DirectoryInfo.Exists property ...
0
votes
0answers
52 views
Mono DirectoryInfo for network share
I wrote a quick console app in VS2010 to copy a file from a network location to a specified location on disk. The program works fine on Windows but when I copy it into the Mac and execute it against ...
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
3answers
353 views
Show files from 2 different folders in a single Gridview
Is it possible to show files from 2 different folders (c:\test1 and c:\test2) in the same gridview?
I work in VB.net (VS 2010)
Thanks!
0
votes
1answer
54 views
When would one use the “extension” property (inherited from “FileSystemInfo”) of the “DirectoryInfo” class?
The Extension property is inherited from FileSystemInfo.
When would you use it? As far as I know, DirectoryInfo represents directories and the actions you can perform on a directory. This would never ...
0
votes
1answer
268 views
Using DirectoryInfo with a UNC path
I'm trying to DirectoryInfo to verify whether a UNC path exists, however DirectoryInfo consistency fails over and says the folder doesn't exist, when I can confirm it does in Windows Explorer.
...
0
votes
0answers
458 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
4answers
128 views
How can i get the listing of files and directories of a path using C++?
I am using the directory class to get this information but unable to assign this data to a data member of my own class. i am doing an oop project. Furthermore,I want to use the concept of ...
0
votes
0answers
65 views
How can I convert a DirectoryInfo handle to a user-defined class?
I am working on a project named "file crawler" in visual c++. It will simply index all the files of a specified directory in a file. The user can search this c++ file for a particular file through ...
0
votes
2answers
328 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
138 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
1answer
438 views
DirectoryInfo.GetFiles(searchPattern) is behaving oddly, and returning random files that DON'T match the searchPattern
I've got some old legacy code that I'm maintaining (please forgive the naming, this was written by a non programmer and the application is not important enough to be rewritten):
Dim Path3 As String
...
0
votes
2answers
248 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 = ...