How to manipulate file in WebPages/C# (.cshtml)? In PHP we have fopen and other functions, what are the counterparts?

link|improve this question

Note that modifying/creating CSHTML files is a code smell. It brings some risk (if data can be injected into the page that may be executed) and may lead to performance issues because of the dynamic compilation of the pages (no garbage collection is possible for the dynamically generated code). – Lucero Jan 28 at 15:12
@Lucero I'm sorry, what I mean is I'm using cshtml, I won't modify cshtml... :) – dpp Jan 28 at 15:29
feedback

1 Answer

up vote 3 down vote accepted

In .NET you have the System.IO.File class. So for example if you wanted to read the contents of some text file in a variable:

@{
    string contents = File.ReadAllText(@"c:\work\foo.txt");
}
link|improve this answer
And... how to import that in WebPages? I'm using pure cshtml files, no cs files... – dpp Jan 28 at 15:04
@domanokz, import what? WebPages is Razor syntax. .cshtml is C#. So you simply use string contents = System.IO.File.ReadAllText(@"c:\work\foo.txt");. – Darin Dimitrov Jan 28 at 15:05
I'm sorry, I thought I should import the namespace. Thanks! – dpp Jan 28 at 15:09
@domanokz, you could use the <namespaces> section of your web.config to define commonly used namespaces in your Razor pages. You could also do a @using System.IO on the top of your Razor page. – Darin Dimitrov Jan 28 at 15:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.