|
||||||
| CSharp Tutorials Tutorials for C# |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||||
|
You could certainly do that, although if you have lots of users then a database or XML would be better. Whatever you use, remember to encrypt the file containing the data, for security.
And you're welcome. ![]() |
|
|||||
|
hi xav, im glad u brought the System.IO class cuz it reminded me with a little coding problem that i didnt find a reason or solution for it heres the code:
Code:
System.IO.FileInfo MyFile = new System.IO.FileInfo("newfile.txt");
MyFile.Create();
and i didnt find any ".close()" method ..
__________________
A good programmer is someone who always looks both ways before crossing a one-way street
|
| Sponsored Links |
|
|
|
|||||
|
I've never actually used a FileInfo object. How about:
csharp Code:
|
|
|||||
|
still, i have the same problem when i try to access the same file like this
Code:
System.IO.File.Create("newfile.txt");
System.IO.File.ReadAllText("newfile.txt");
__________________
A good programmer is someone who always looks both ways before crossing a one-way street
|
|
|||||
|
still, it returns "being used by another process" exception....but never mind
i found an alternate by using a stream writer Code:
System.IO.StreamWriter create = new System.IO.StreamWriter("newfile.txt");
create.Close();
__________________
A good programmer is someone who always looks both ways before crossing a one-way street
|
![]() |
| Tags |
| file, text, tutorial, writing |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Tutorial: Storing Images in MySQL with PHP | Jordan | PHP Tutorials | 13 | 09-23-2008 07:11 PM |
| Text files | travy92 | Visual Basic Programming | 1 | 10-07-2007 11:06 AM |
| How to style fonts of a text in a simple page? | c0de | Tutorials | 3 | 09-15-2007 11:08 PM |
| HTML Basic Formatting | clookid | Tutorials | 14 | 03-06-2007 04:10 PM |
| John's Java Tutorial Index | John | Java Tutorials | 0 | 01-11-2007 04:05 PM |
| WingedPanther | ........ | 2753.6 |
| Xav | ........ | 2704 |
| Brandon W | ........ | 1702.32 |
| John | ........ | 1207.73 |
| marwex89 | ........ | 1175.24 |
| morefood2001 | ........ | 966.05 |
| dcs | ........ | 655.75 |
| Steve.L | ........ | 475.59 |
| orjan | ........ | 418.58 |
| Aereshaa | ........ | 383.54 |
Goal: 100,000 Posts
Complete: 97%