DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub test()
Call ShowFileInfo("c:\xyz.txt")
End Sub
Sub ShowFileInfo(filespec)
Set fs = CreateObject("Scripting.FileSystemObject")
Set f = fs.GetFile(filespec)
s = "Created: " & f.DateCreated
MsgBox s
End Sub
Sub test()
Open "c:\xxx.abc" For Output As #1
Print #1, "ongbey"
Close #1
Call ShowFileInfo("c:\xxx.abc")
End Sub
Sub ShowFileInfo(filespec)
Set fs = CreateObject("Scripting.FileSystemObject")
Set f = fs.GetFile(filespec)
s = "Created: " & f.DateCreated
MsgBox s
End Sub