Con questo script, dato un oggetto del file system, verranno elencate tutte le rispettive proprietà:
<% Dim FileObject Set FileObject = Server.CreateObject("Scripting.FileSystemObject") strFile = Server.MapPath("/default.asp") Set f = FileObject.GetFile( strFile ) Response.write "<P>Proprietà del file '" & strFile &"' <BR>" Response.write "Creazione: " & f.DateCreated Response.write "<BR>Ultima modifica: " & f.DateLastModified Response.write "<BR>Ultimo accesso: " & f.DateLastAccessed intAttributi = f.Attributes Response.write "<BR>Attributi: <UL>" if intAttributi = 0 then Response.write "<li>File normale" end if if intAttributi >= 128 then intAttributi = intAttributi - 128 Response.write "<li>File compresso" end if if intAttributi >= 64 then intAttributi = intAttributi - 64 Response.write "<li>Collegamento" end if if intAttributi >= 32 then intAttributi = intAttributi - 32 Response.write "<li>File di archivio" end if if intAttributi >= 16 then intAttributi = intAttributi - 16 Response.write "<li>Directory" end if if intAttributi >= 8 then intAttributi = intAttributi - 8 Response.write "<li>Volume" end if if intAttributi >= 4 then intAttributi = intAttributi - 4 Response.write "<li>File di sistema" end if if intAttributi >= 2 then intAttributi = intAttributi - 2 Response.write "<li>File nascosto" end if if intAttributi >= 1 then intAttributi = intAttributi - 1 Response.write "<li>File nascosto" end if Response.write "</UL>" Set f = Nothing Set FileObject = Nothing %>
Commenti
Per inserire un commento, devi avere un account.
Fai il login e torna a questa pagina, oppure registrati alla nostra community.
Approfondimenti
Nessuna risorsa collegata
I più letti di oggi
- Creare un adorner personalizzato per le trading cards di PivotViewer in Silverlight 5.0
- Copiare uno Stream con il .NET Framework 4.0
- Supporto alla validazione client-side in una data annotation su ASP.NET MVC 3
- Disabilitare automaticamente un workflow di GitHub (parte 2)
- Dependency injection con Minimal API di ASP.NET Core
- Migliorare l'organizzazione delle risorse con Azure Policy
- Sfruttare una CDN con i bundle di ASP.NET
- Creare applicazioni in real-time con ASP.NET SignalR
- Memorizzare posizione e dimensioni della finestra di una applicazione OOB Silverlight 4.0
- Web Camp - HTML5 per il web di oggi