vb.net - Find file creator in vb? -


is there way creator of file using vb8? can't seem find work. need find creator of each file in directory of hundreds of files.

you can try file owner

dim fs filesecurity = file.getaccesscontrol("somefilename.ext") dim sid identityreference = fs.getowner(gettype(securityidentifier)) dim ntaccount identityreference = sid.translate(gettype(ntaccount)) dim owner string = ntaccount.tostring() 

Comments

Popular posts from this blog

razor - Is this a bug in WebMatrix PageData? -

iphone - Requiring the presence of a method in an id -

xslt - Is it possible to select a node that just includes a subset of the child nodes? -