Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Any simple way to put file names into the text file?
Message
 
General information
Forum:
Windows
Category:
Computing in general
Miscellaneous
Thread ID:
01285227
Message ID:
01298983
Views:
16
>>Try this (not tested and not in 2005. There are better ways to do it in 2005)
>>
>>            Dim files() As String
>>            Dim fileList As New System.Text.StringBuilder
>>            Dim myDate As DateTime = Date.Parse("1/22/2008")
>>            Dim fileInfo As IO.FileInfo
>>
>>            files = IO.Directory.GetFiles("C:\", "*.*")
>>
>>            For i As Integer = 0 To files.Length - 1
>>                fileInfo = New IO.FileInfo(files(1))
>>                If fileInfo.LastWriteTime > myDate Then
>>                    fileList.Append(files(i))
>>                    fileList.Append(Environment.NewLine)
>>                End If
>>            Next
>>
>>            Dim writer As New IO.StreamWriter("C:\filelist.txt")
>>            writer.Write(fileList.ToString)
>>            writer.Close()
>>
>
>Do we have simple translation from VB to C#? Also does it have to be in a new project or how can I execute one program?

I've decided to create a little Windows Application (in VB, using your code).

What is the recommended name for DateTimePicker Control? And am I right naming textboxes as txt... ?
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform