Using a FileStream to read a system file (C#) : FileStream « File Directory « ASP.NET Tutorial






<%@ Page Language="C#" %>
<%@ Import Namespace="System.IO" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">

    protected void Page_Load(object sender, EventArgs e)
    {
        FileStream fs = new FileStream(Server.MapPath("Data.txt"), FileMode.Open);
        byte[] data = new byte[fs.Length];
        fs.Read(data, 0, (int)fs.Length);
        fs.Close();

    }
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    
    </div>
    </form>
</body>
</html>








10.14.FileStream
10.14.1.Using a FileStream to read a system file (C#)
10.14.2.Using a FileStream to read a system file (VB)
10.14.3.Use FileStream to read file (VB.net)
10.14.4.Using I/O enumerations to control file behavior when writing a file (C#)
10.14.5.Using I/O enumerations to control file behavior when writing a file (VB)