vote up 0 vote down star

This code does not seem to compile, I just need to write something to a small log text file (a new row to end of file).

<%@ Import Namespace="System.IO" %>

void Page_Load( object sender, EventArgs e ){

    FileSystem myFileSystem = new FileSystem();
    myFileSystem.WriteAllText(logFile, hash, false);
flag

77% accept rate

5 Answers

vote up 1 vote down check

I can't see any class called FileSystem in the System.IO namespace. Is this something new in .NET 4.0 which you're trying to use?

Note that the File class has a static method called WriteAllText. Is that what you meant?

EDIT: To append to a file instead, use File.AppendAllText.

link|flag
Thanks, but WriteAllText does not seem to append to end of log file – Tom Nov 10 '08 at 13:48
Editing answer appropriately... – Jon Skeet Nov 10 '08 at 13:52
vote up 2 vote down

FileSystem is a class from the VisualBasic namespace:

http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.filesystem.aspx

Have a look at the FileStream class in C#:

http://msdn.microsoft.com/en-us/library/system.io.filestream.aspx

link|flag
vote up 2 vote down

FileSystem is in Microsoft.VisualBasic.File.IO. You'd have to reference that.

Although you probably don't really want FileSystem at all. You probably want System.IO.File

link|flag
vote up 0 vote down

This one seem to compile:

File myFileSystem = new File();
myFileSystem.AppendAllText(logFile, hash, false);
link|flag
It shouldn't - File is a static class, and AppendAllText is a static method. – Jon Skeet Nov 10 '08 at 14:01
vote up 0 vote down

Without a doubt log4net! http://logging.apache.org/log4net/index.html

link|flag

Your Answer

Get an OpenID
or

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