Around and About .NET World

Il blog di Marco Minerva
posts - 1671, comments - 2232, trackbacks - 2135

My Links

News

Contattami su Live Messenger:


MCTS: Windows, Web, Distributed Applications & SQL Server

MCPD: Enterprise Applications

Tag Cloud

Archives

Post Categories

Links

[70-536] Recuperare il proprietario di un file

Per recuperare il proprietario di un file o di una directory è necessario utilizzare, rispettivamente, gli oggetti FileSecurity e DirectorySecurity. La seguente routine consente di recuperare il nome del proprietario del file specificato:

private static string Owner(string fileName) { FileSecurity fs = File.GetAccessControl(fileName); NTAccount acc = (NTAccount)fs.GetOwner(typeof(NTAccount)); return acc.Value; }

Dopo aver ottenuto l'oggetto *Security corrispondente, viene creato un NTAccount che contiene il riferimento al proprietario del file.

Technorati Tags: , , ,

Print | posted on martedì 17 luglio 2007 13:22 | Filed Under [ C# Certificazioni ]

Comments have been closed on this topic.

Powered by:
Powered By Subtext Powered By ASP.NET