Jump to content

POWERED BY:

Archived

This topic is now archived and is closed to further replies.

hargon

Criar pasta no servidor

Recommended Posts

Alguém sabe me informar se é possível e como criar pastas no servidor utilizando ASP? :rolleyes:/>

Share this post


Link to post
Share on other sites

Se você tem permissão de criar ou é o ADMIN, segui o script:

<%

Set pasta = Server.CreateObject("Scripting.FileSystemObject")

 

If Not pasta.FolderExists("C:\Inetpub\wwwroot\exercicio\Teste") Then

  pasta.CreateFolder("C:\Inetpub\wwwroot\exercicio\Teste")

  Response.Write "Pasta criada com sucesso!"

  Else

  Response.Write "Esta pasta já existe!"

End if

 

Set pasta = nothing

%>

Share this post


Link to post
Share on other sites

Valeu!

 

Vou testar!

Share this post


Link to post
Share on other sites

×

Important Information

Ao usar o fórum, você concorda com nossos Terms of Use.