我想使用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;
Run Code Online (Sandbox Code Playgroud)