Home All Groups Group Topic Archive Search About
Author
6 Oct 2006 12:38 AM
frogman7
directory.getfiles(path, "*.htm") finds .htm and .html files
same if you are looking for .c it finds .css also

is there a fuction that just gets the file extention specified?

Author
6 Oct 2006 3:36 AM
Cor Ligthert [MVP]
Yes,

http://msdn2.microsoft.com/en-us/library/wz42302f.aspx

Cor

Show quoteHide quote
"frogman7" <frogm***@googlemail.com> schreef in bericht
news:1160095109.342838.279550@h48g2000cwc.googlegroups.com...
> directory.getfiles(path, "*.htm") finds .htm and .html files
> same if you are looking for .c it finds .css also
>
> is there a fuction that just gets the file extention specified?
>
Author
6 Oct 2006 4:32 AM
frogman7
AFter reading the doc it looks like i will have to try a different
approach

i want the user to be able to search for *.htm and only get the files
that have an htm extention not the html files.  so i will have to add
some code to see if they only want the htm files and just return
thoses.

if you have any suggestions please let me know
Author
6 Oct 2006 6:05 AM
gene kelley
On 5 Oct 2006 21:32:35 -0700, "frogman7" <frogm***@googlemail.com> wrote:

>AFter reading the doc it looks like i will have to try a different
>approach
>
>i want the user to be able to search for *.htm and only get the files
>that have an htm extention not the html files.  so i will have to add
>some code to see if they only want the htm files and just return
>thoses.
>
>if you have any suggestions please let me know

One way -
This Mainpages folder contains a mix of files with .htm & .html extensions.

The resulting displayed  listbox displays only the files with the .htm extensions.

        Dim di As New DirectoryInfo("E:\Web Projects\Mainpages")
        Dim fi As FileInfo() = di.GetFiles("*.htm")
        For Each fiTemp As FileInfo In fi
            If fiTemp.Extension = ".htm" Then
                Me.ListBox1.Items.Add(fiTemp.Name)
            End If
        Next


Gene
Author
13 Oct 2006 8:12 PM
frogman7
what i am trying to do is something similar to the search that windows
does to find files and folders.  I am putting a start directory and
want to find all the file (including the files in the sub folders) so i
can write each line to a master file.  i have it working but it uses
loops and it extremely slow.  Is there a function that grabs all the
files from a folder and subdirecies?
Author
30 Nov 2006 5:22 PM
iqubal
Do it Like this
    FileInfo Myfile = new FileInfo(strFiles[i]);
    if (Myfile.Extension.Length==4)   
                {

                }