Abrir diretório local
Prezados,
Preciso abrir diretório local. ou seja no client-side. e que seja compatível em todos os navegadores.
>
<head>
<script language=vbscript>
Function opendir()
REM – I set the folder name.
FolderName = "F:\"
REM – I create the Shell object.
Set Shell = WScript.CreateObject("WScript.Shell")
REM – I open the folder.
Shell.Run (FolderName)
REM – I close the object.
Set Shell = Nothing
End function
</script>
</head>
<body>
<a onclick="opendir()">OPENDIR</a>
<body>Discussão (0)
Carregando comentários...