+ Reply to Thread
Results 1 to 2 of 2

Getting NTFS file attributes

Hybrid View

  1. #1
    Kiran
    Guest

    Getting NTFS file attributes

    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


  2. #2
    Bob Phillips
    Guest

    Re: Getting NTFS file attributes

    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
    >




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1