Parsi Coders

نسخه‌ی کامل: سورس کد ساخت یک پوشه (asp.net)
شما در حال مشاهده نسخه آرشیو هستید. برای مشاهده نسخه کامل کلیک کنید.
با سورس زیر میتونید با asp.net یک پوشه بسازید !
english :
This code is use to create a folder at any drive (asp.net)

code :
کد:
Dim MyPath, MyName As String
'Display the names in C:\ that represent directories.
'Set the path.
MyPath = "Path in which u want to create a folder"  
'Retrieve the first entry.    
MyName = Dir(MyPath, vbDirectory)  

Try
'The folder is not there & to be created.
If MyName = "" Then
'Folder created  
MkDir(MyPath)        
MsgBox("A Folder is created as " & MyPath)
End If
Catch ex As Exception
MsgBox("This Path is not Valid")
End Try