The .NET DirectoryInfo object contains detailed information about a directory on the filesystem.
1
vote
2answers
57 views
Why does the Name Property of FileInfo object start with “~$”?
So I'm writing some code that is going through a directory of .xlsx files and picking the file that was created last. It's a simple task, but there is something a bit strange happening with the Name ...
0
votes
1answer
30 views
The process cannot access the file in web services
Below is the exception i'm getting from my web service while deleting a Diretory
The process cannot access the file 'button.js' because it is being used by another process.
3/22/2013 11:16:51 AM : ...
0
votes
2answers
55 views
Return sorted directory folders by name
I have a directory path c:\W with a list of folders in it -
01_C
02_B
03_A
04_F
I would like the directory folders sorted and returned with below output -
A
B
C
F
I am using .net 4.
0
votes
2answers
289 views
DirectoryInfo GetFiles() filter grid
I am working on a page that displays the pdf files in a specific directory in a grid, along with a link to the file.
I am modifying Scott Mitchell's example here: ...
0
votes
0answers
81 views
C# how to get directory info with avoiding readonly files
how can i get directory info without getting readonly file or folders here is my code but this when the file or folder is readonly returns a error!
var dirinfo = new DirectoryInfo(Path_Tb_Path.Text);
...
0
votes
1answer
56 views
Error on getting DirectoryInfo with GetFileSystemInfos()
I get an error when I'm trying to get a DirectoryInfo because there is some read only file and folder.
How can I skip them?
var dirinfo = new DirectoryInfo(Path_Tb_Path.Text);
var entries = ...
0
votes
0answers
154 views
VB.net Copy folder from SharePoint to local computer
I have written a VB.net application that backs up folders on our SharePoint 2007 server and puts a fresh copy of the files in their place. This application works perfectly on my Windows 7 computer, ...
0
votes
0answers
67 views
Recursive Directory Structure Listing Taking To Long To Process
I am using the code below start at a path (root) provided by a GET variable and recursively go into every sub folder and display it's contents as list items. The path I'm using has about 3800 files ...
0
votes
1answer
155 views
Access denied error from Web.API controller and DirectoryInfo
I have a virtual directory configured on my IIS server, pointing to a UNC network location - "\\esdata\userdata". When I set this up I set a specific user in IIS config, and I know this user has full ...
-2
votes
1answer
120 views
Unable to Delete Folder Containing Invisible Files
Using Visual Studio 2010 C#. I'm attempting to delete a folder in C:/Windows/MyFolderA where MyFolderA is a folder placed there by my software - Not Microsoft's.
I've used this code to delete the ...
-3
votes
1answer
62 views
Not reading the content of files in wpf [closed]
var dir = new DirectoryInfo(Path);
foreach (FileInfo flInfo in dir.GetFiles())
{
String name = flInfo.Name;
long size = flInfo.Length;
...
1
vote
1answer
317 views
Get full path to file while debugging using IIS Express
I have a .NET application that I am trying to debug and part of my application loads a file from my project. This file is located at
C:\Users\USER_FOLDER\Documents\Visual Studio ...
3
votes
2answers
114 views
DirectoryInfo Enumeration
While learning C# basics i have learned that foreach works on those collection that have implemented IEnumerable interface. So far so good but today when I have came across DirectoryInfo I got ...
0
votes
2answers
381 views
How to get full file path on Asp.net?
I'm using Asp.net treeview to show my directory including files. I want to show the file path once the user click on the treeview node. I'm using FullName property to get the path. The problem that I ...
0
votes
2answers
366 views
C# display all files from selected folder
I want to display all the files from a selected folder.. ie files from that folder and files from the subfolders which are in that selected folder.
example -
I have selected D:\Eg. Now I have some ...
1
vote
5answers
193 views
If DirectoryInfo contain a Directory
I'm tring the test to see if a DirectoryInfo[] contains a directory
my code is below
DirectoryInfo[] test = dir.GetDirectories();
if(test.Contains(new DirectoryInfo(dir.FullName +"\\"+ ...
0
votes
1answer
68 views
Create XDocument of Directory Stucture
I want to create a XMLDom of a Directory structure that looks like the following
<ROOT>
<NAME>MainFolder</NAME>
<Path>C:\MainFolder</Path>
<Level1>
...
1
vote
1answer
214 views
Concatenate string literals with DirectoryInfo enumeration and adding quotation marks.
This seems like such an obscure question, but here it goes:
Is there a way to concatenate String Literals with a DirectoryInfo enumeration (which contains a file path) while adding quotations around ...
5
votes
2answers
918 views
Show progress when searching all files in a directory
I previously asked the question Get all files and directories in specific path fast in order to find files as fastest as possible. I am using that solution in order to find the file names that match a ...
0
votes
1answer
207 views
how to show output from folder directoryInfo asp.net
I have this code_behind that get some info from an folder and then show the files on my page.
Sub fileinfo()
Dim objDI As New System.IO.DirectoryInfo(Server.MapPath("upload/files/"))
Dim ...
1
vote
2answers
1k views
Check if directory is accessible in C#? [duplicate]
Possible Duplicate:
.NET - Check if directory is accessible without exception handling
Im making a small file explorer in Visual Studio 2010 with NET 3.5 and C#, and I have this function to ...
0
votes
3answers
606 views
How do i list all directories and subdirectories in an unordered list
I have this problem that i cant seem to overcome. i am trying to list all the directories and sub directories. This is what i have so far in code :
String[] Folders;
String[] Files;
...
1
vote
3answers
1k views
C# Access to the path 'C:\Documents and Settings\' is denied
I'm using a simple DirectoryInfo to grab all directories on the root on the C drive. However, I'm running under administrator and i'm getting the error of path access denied, below is the code that I ...
3
votes
3answers
725 views
Configuration SearchPattern in EnumerateFiles
I have a directory with 2 files:
file1.xls
file2.xlsx
If I do:
directoryInfo.EnumerateFiles("*.xls", SearchOption.TopDirectoryOnly)
It is returning both files, and I only want the first ...
2
votes
1answer
385 views
C# Threading Parallel.ForEach and DirectoryInfo Out of Memory Exception
I have a very simply Parallel.ForEach that calls the code below:
var maxDegree = new ParallelOptions{MaxDegreeOfParallelism = 5};
Parallel.ForEach(PList,maxDegree,fl =>
{
...
3
votes
2answers
624 views
C# File and Directory iteration, possible to do both at one?
This might be a confusing question but I have written below a Directory crawler, that will start at a root crawler, find all unique directories and then find all files and count them and add up their ...
2
votes
5answers
1k views
C# How can I solve limitations when using DirectoryInfo?
When I recursive through some folders and files, I encounter this error:
The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the ...
0
votes
2answers
730 views
DirectoryInfo.GetFiles method not returning any files
I'm trying to return the .config files that exist in %WINDIR%\System32\inetsrv\config.
For this I am using the following code:
DirectoryInfo configFolder = new ...
2
votes
3answers
935 views
What does @“../..” mean in a path?
I am following this tutorial from MSDN.
There's something I saw in the code that I can't understand
private void PopulateTreeView()
{
TreeNode rootNode;
DirectoryInfo info = ...
4
votes
4answers
343 views
c# why when the path is “C:” the directoryInfo takes me to the application folder?
Why when i give the path "c:" it changed me directly to application folder?
static void Main(string[] args)
{
DirectoryInfo dir = new DirectoryInfo("c:");
...
1
vote
1answer
364 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 ...
0
votes
2answers
2k 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 ...
2
votes
1answer
261 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.
...
0
votes
2answers
221 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
245 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 ...
1
vote
1answer
124 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
2k 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
3
votes
1answer
489 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 ...
3
votes
1answer
1k 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 ...
1
vote
5answers
878 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 ...
2
votes
1answer
639 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 ...
1
vote
0answers
162 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
192 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 ...
1
vote
3answers
663 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):
...
2
votes
1answer
215 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 ...
0
votes
3answers
618 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!
1
vote
1answer
286 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?
0
votes
2answers
834 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 ...
2
votes
1answer
3k 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 ...
0
votes
1answer
99 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 ...
