Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
Dim yol As New DirectoryInfo("KLASORYOLU")
For Each dosya As FileInfo In yol.GetFiles()
dosya.Delete()
Next
For Each klasor As DirectoryInfo In yol.GetDirectories()
klasor.Delete(True)
Next