| | |
file upload
Please support our VB.NET advertiser: Programming Forums - DaniWeb Sister Site
![]() |
•
•
Join Date: Jul 2007
Posts: 193
Reputation:
Solved Threads: 16
In my code I want to upload a file to my project(named Musiker), under the folder music. Here is what I did so far, it's not working.
'to get the path where to upload it, I did the following
Dim strpath As String = Application.StartupPath
Dim num As Integer = strpath.IndexOf("Musiker")
strpath = strpath.Remove(num + 7) & "\music"
'now I want to upload a file
Dim clsRequest As System.Net.FileWebRequest = (System.Net.WebRequest.Create(strpath))
clsRequest.Method = System.Net.WebRequestMethods.File.UploadFile
' read in file...
Dim bFile() As Byte = System.IO.File.ReadAllBytes("pathofFile")
' upload file...
Dim clsStream As System.IO.Stream = clsRequest.GetRequestStream()
clsStream.Write(bFile, 0, bFile.Length)
clsStream.Close()
clsStream.Dispose()
It gives me an error, access not allowed or something like that.
'to get the path where to upload it, I did the following
Dim strpath As String = Application.StartupPath
Dim num As Integer = strpath.IndexOf("Musiker")
strpath = strpath.Remove(num + 7) & "\music"
'now I want to upload a file
Dim clsRequest As System.Net.FileWebRequest = (System.Net.WebRequest.Create(strpath))
clsRequest.Method = System.Net.WebRequestMethods.File.UploadFile
' read in file...
Dim bFile() As Byte = System.IO.File.ReadAllBytes("pathofFile")
' upload file...
Dim clsStream As System.IO.Stream = clsRequest.GetRequestStream()
clsStream.Write(bFile, 0, bFile.Length)
clsStream.Close()
clsStream.Dispose()
It gives me an error, access not allowed or something like that.
plusplus & martonx.
You are requested to use BB code tags.
You are requested to use BB code tags.
VB.NET Syntax (Toggle Plain Text)
My.Computer.Network.UploadFile("source file path","destination address")
Last edited by adatapost; Jul 1st, 2009 at 4:14 am.
•
•
Join Date: Jul 2007
Posts: 193
Reputation:
Solved Threads: 16
Let me change my question. Since I am new to vb.net, but worked in asp.net, I thought I have to upload the file. But really what I have to do, is save it to my project. So what I really needed was
File.Copy(sourceFile, destinationFile)
My question is, when using a path for the destination file, where would I put it, so that it should be part of my project?
File.Copy(sourceFile, destinationFile)
My question is, when using a path for the destination file, where would I put it, so that it should be part of my project?
•
•
Join Date: Jul 2007
Posts: 193
Reputation:
Solved Threads: 16
Sorry, here with code tags
Let me change my question. Since I am new to vb.net, but worked in asp.net, I thought I have to upload the file. But really what I have to do, is save it to my project. So what I really needed was
My question is, when using a path for the destination file, where would I put it, so that it should be part of my project?
Let me change my question. Since I am new to vb.net, but worked in asp.net, I thought I have to upload the file. But really what I have to do, is save it to my project. So what I really needed was
VB.NET Syntax (Toggle Plain Text)
File.Copy(sourceFile, destinationFile)
My question is, when using a path for the destination file, where would I put it, so that it should be part of my project?
![]() |
Similar Threads
- File Upload Help (PHP)
- File upload problem (PHP)
- Need file upload code for word Doc (HTML and CSS)
Other Threads in the VB.NET Forum
- Previous Thread: Database Connectivity
- Next Thread: how to get the HTML source code of the page embeded with AJAX
Views: 900 | Replies: 4
| Thread Tools | Search this Thread |
Tag cloud for VB.NET
.net 2005 2008 access account application arithmetic array arrays basic bing button buttons c# center check checkbox code combobox component convert crystalreport data database databasesearch datagrid datagridview design designer dissertation dissertations dropdownlist excel file-dialog folder ftp generatetags google gridview hardcopy highlighting images inline insert installer intel internet listview mobile monitor ms net networking output passingparameters peertopeervideostreaming picturebox picturebox1 plugin port print printing problem problemwithinstallation project save searchbox searchvb.net select serial server soap sorting studio syntax table tcp text textbox time timer toolbox trim update updown user vb vb.net vb.netcode vb.netformclosing()eventpictureboxmessagebox vb2008 vbnet view visual visualbasic visualbasic.net visualstudio visualstudio2008 web wpf






