Is it possible to get NTFS file attributes (like Date created, author, size)
to get it using VBA code. If yes, Can you please let me know how I can achive
that
Thnx
Is it possible to get NTFS file attributes (like Date created, author, size)
to get it using VBA code. If yes, Can you please let me know how I can achive
that
Thnx
Kiran,
This isn't getting the NTFS attributes directly, but looking at custom
properties stored with the workbook
First, add this UDF (user defined function) to a standard code module
'-----------------------------------------------------------------
Function DocProps(prop As String)
'-----------------------------------------------------------------
Application.Volatile
On Error GoTo err_value
DocProps = ActiveWorkbook.BuiltinDocumentProperties _
(prop)
Exit Function
err_value:
DocProps = CVErr(xlErrValue)
End Function
and enter in a cell such as
=DocProps ("last author")
or
=DocProps ("last save time")
other attributes
Title
Subject
Author
Keywords
Comments
Template
Last Author
Revision Number
Application Name
Last Print Date Creation Date
Last Save Time
Total Editing Time
Number of Pages
Number of Words
Number of Characters
Security
Category
Format
Manager Company
Number of Bytes
Number of Lines
Number of Paragraphs
Number of Slides
Number of Notes
Number of Hidden Slides
Number of Multimedia Clips
Hyperlink Base
Number of Characters (with spaces)
--
HTH
RP
(remove nothere from the email address if mailing direct)
"Kiran" <Kiran@discussions.microsoft.com> wrote in message
news:08668624-C071-4354-9E98-5DB4A6582AE5@microsoft.com...
> Is it possible to get NTFS file attributes (like Date created, author,
size)
> to get it using VBA code. If yes, Can you please let me know how I can
achive
> that
>
> Thnx
>
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks