本文整理匯總了C#中System.IO.Read方法的典型用法代碼示例。如果您正苦於以下問題:C# IO.Read方法的具體用法?C# IO.Read怎麽用?C# IO.Read使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.IO
的用法示例。
在下文中一共展示了IO.Read方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: CopyStream
private static void CopyStream(SystemIO.Stream source, SystemIO.Stream destination)
{
byte[] buffer = new byte[32768];
int bytesRead;
do
{
bytesRead = source.Read(buffer, 0, buffer.Length);
destination.Write(buffer, 0, bytesRead);
} while (bytesRead != 0);
}
示例2: PersistStreamInternal
private void PersistStreamInternal(IO.Stream stream, out Guid fileStoreGuid, out long fileSize)
{
fileStoreGuid = Guid.NewGuid();
fileSize = 0;
using (IO.FileStream fs = new IO.FileStream(rootFolder + "\\" + fileStoreGuid, IO.FileMode.Create))
{
byte[] buffer = new byte[1024 * 4];
int len = -1;
while ((len = stream.Read(buffer, 0, buffer.Length)) > 0)
{
fs.Write(buffer, 0, len);
fileSize += len;
}
}
}