Non Ole .txt File Properties
I have read & searched most of this forum and cannot find any reference as to how one can get the additional File Properties.
Eg. a Text File in Windows XP Professional. If you right click it, you can get AuthorName & Category etc.
I have tried using the DSodll.dll object, but that is only for OLE objects.
Can anyone assist.
I need to be able read & write to these properties. I have even tried to use the scrun scripting object.
Any pointers? I will really appreciate it.
Kind Regards
Re: Non Ole .txt File Properties
Quote:
Private Sub WriteStream(strFile As String, strStream As String, strContents As String)
Dim intFN As Integer
intFN = FreeFile
Open strFile & ":" & strStream For Binary As #intFN
Put #intFN, , strContents
Close #intFN
End Sub
KayJay, the above code is giving me troubles..it is giving file not found message - 53..any help?