Tagged Questions

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 = ...
3
votes
1answer
137 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
72 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 ...
1
vote
2answers
114 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
2answers
485 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
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, _ ...
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
62 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
3answers
356 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
441 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
323 views

Copying files to/from a “Portable Device”

I have run into a problem with a couple of the "Sync" applications I wanted to create. In both instances, I am trying to connect a Portable Device to my computer and access it using VB.NET. One ...