我想使用c#?
复制并粘贴音频文件 Int32 intAudioSize = 0;
string strAudioType = null;
Stream AudioStream = null;
// Gets the Size of the Audio
intAudioSize = FileUpload1.PostedFile.ContentLength;
// Gets the Audio Type
strAudioType = FileUpload1.PostedFile.ContentType;
// Reads the Audio
AudioStream = FileUpload1.PostedFile.InputStream;
答案 0 :(得分:5)
您可以使用File.Copy方法。
请参阅Copy, Delete, and Move Files and Folders
<强> 修改 强>
编辑问题。
您可以使用HttpPostedFile.SaveAs Method
用于保存使用<input type="file" />
控件
答案 1 :(得分:1)
答案 2 :(得分:0)
使用File.Copy
:
File.Copy("file-from.mp3", "file-to.mp3");
答案 3 :(得分:0)
FileUpload.SaveAs("file.ext");