|
|
<pre>
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Applica
{
class Program
{
static void Main(string[] args)
{
DirectoryInfo da = new DirectoryInfo("C:\\Folder1");
FileInfo[] Arr = da.GetFiles();
FileInfo ap = Arr[Arr.Length - 1];
long Totbyte = ap.Length;
string filePath = ap.FullName;
Console.WriteLine("Total Bytes = {0} bytes", Totbyte);
string temPath = Path.GetTempFileName();
string temPath2 = Path.GetTempFileName();
const int BufferSize = 1024;
byte[] buffer = new byte[BufferSize];
using (BufferedStream input = new BufferedStream(File.OpenRead(temPath)))
{
int bytesRead;
using (BufferedStream output = new BufferedStream(File.OpenWrite(temPath2)))
{
while ((bytesRead = input.Read(buffer, 0, BufferSize)) > 0)
{
decimal[] arry = new decimal[Totbyte];
for (int count = 0; count < buffer.Length; count++)
{
arry[count] = buffer[count];
Console.WriteLine("{0}={1}",arry[count],buffer[count]);
}
byte[] data2 = new byte[Totbyte];
for (int count = 0; count < arry.Length; count++)
{
data2[count] = (byte)arry[count];
Console.WriteLine("{0}={1}",data2[count],arry[count]);
}
string filePath2 = Path.Combine("C:\\check", Path.GetFileName(filePath));
output.Write(buffer, 0, bytesRead);
}
}
}
}
}
}
|
|
|
|
|
Do you have a question to ask?
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
|
|
|
|
|
|
As a school teacher you probably know what manner is, or you not as has noting of it?
You see, 'does no work' is a very poor declaration. It does work and do exactly what you told to do. To describe a problem you should tell us the input, the expected output and the real output.
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
|
|
|
|
|
Hey guys, thanks you very much. I will try to find someone on Craigslist who can do this for a small fee. Again, thank you very much.
|
|
|
|
|
Just before you go, please tell us, what do you teach? Are you the box trainer?
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
|
|
|
|
|
To be quite honest I don't know what a box trainer is. I can only imagine that you are making a rude comments which is ok. I teach 12 year old children at a Public School 219 in Brooklyn . We are currently short staff, so everyone does a little of every thing to make our education system work. I was train as a social studies teacher, but I have been teaching everything but social studies. Thank you and have a great day.
|
|
|
|
|
And?
They are "your students" - so you should in theory know more than them.
And let's be honest here: reading data and converting it to a table of numbers is a trivial task in any modern language.
"THE VISUAL PRESENTATION DOES NOT WORK" Yes, it does: it does exactly what you tell it to. All you have to do is work out what you want it to do, and tell it to do it...
Which is, as I said, trivial. So what part of it is giving you a problem?
Those who fail to learn history are doomed to repeat it. --- George Santayana (December 16, 1863 – September 26, 1952)
Those who fail to clear history are doomed to explain it. --- OriginalGriff (February 24, 1959 – ∞)
|
|
|
|
|
Hey guys, thanks you very much. I will try to find someone on Craigslist who can do this for a small fee. Again, thank you very much.
|
|
|
|
|
Is the education system in the USA really so rubbish that they let teachers who know nothing about complicated technical subjects teach it to people who probably know more about how to use the technology than the teachers?
If so, then I'd fear for the future of your country, because that is like getting someone who can't drive to teach airline pilots to fly...
Those who fail to learn history are doomed to repeat it. --- George Santayana (December 16, 1863 – September 26, 1952)
Those who fail to clear history are doomed to explain it. --- OriginalGriff (February 24, 1959 – ∞)
|
|
|
|
|
OriginalGriff wrote: education system in the USA really so rubbish
Nope. I r a produck of da puplick edukashun sistum and I terned out just fine.
I would suspect that there is much more to this story than meets the eye.
|
|
|
|
|
I've gone back through the postings of this particular poster. This[^] makes for an ironic posting.
|
|
|
|
|
Pete O'Hanlon wrote: ironic posting
Precisely.
|
|
|
|
|
Wow! They get rapid advancement in the US don't they?
Student to teacher in a few short months...
Those who fail to learn history are doomed to repeat it. --- George Santayana (December 16, 1863 – September 26, 1952)
Those who fail to clear history are doomed to explain it. --- OriginalGriff (February 24, 1959 – ∞)
|
|
|
|
|
You're meant to be teaching this course. What happens when a student asks you a question about something that is, after all, incredibly simple? Do you wait until the following week to give an answer, the same way that you whinged about a previous lecturer of yours? If you can't write this stuff, you shouldn't be teaching it.
|
|
|
|
|
computerpublic wrote: All i am attempting to do is read a file piece by piece, turn each byte into a number You're assuming a text-file in ASCII? In UTF, a charactar might consist of multiple bytes.
static void Main(string[] args)
{
string data;
using (var fs = new FileStream(path: @"D:\Projects\ConsoleApplication6\ConsoleApplication6\Program.cs", mode: FileMode.Open))
using (var rdr = new StreamReader(fs))
{
data = rdr.ReadToEnd();
}
using (var fsout = new FileStream(path: "output.txt", mode: FileMode.Create))
foreach (char c in data)
{
Byte b = ASCIIEncoding.ASCII.GetBytes(new char[] { c })[0];
Console.WriteLine("{0} {1}", c, b);
fsout.WriteByte(b);
}
Console.WriteLine();
Console.WriteLine(File.ReadAllText("output.txt"));
Console.ReadLine();
}
Put the cursor on the first line and press the F9 . Next use F10 to step thorugh all the instructions.
Soooo, to bring the subject back to my fee..
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
|
|
|
|
|
Eddy Vluggen wrote: Soooo, to bring the subject back to my fee..
Try CraigsList - he says he is going to!
Those who fail to learn history are doomed to repeat it. --- George Santayana (December 16, 1863 – September 26, 1952)
Those who fail to clear history are doomed to explain it. --- OriginalGriff (February 24, 1959 – ∞)
|
|
|
|
|
I am sorry I approach you the wrong way. I didn't the code project forum was about charging individual for help. After all it is a "forum". The country is quickly becoming second class because those who know do not want help those who do not know. Our jails and prison are full to capacity and prisoners in California are being release prematurely to make room for new prisoners. Think about education the next you see someone getting robs or violated. It could be you, your neighbor or your love ones. Its because of education or lack of education why our prison system is overwhelmed. You disgrace the forum when you make comments about being paid. You tarnish the reputation of the people who genuinely join the forum to help others. You can insult me and be as rude as you want. At least I am trying to help these kids to be interested in something. Have a good day Sir.
|
|
|
|
|
OK. Step away from the computer, take several deep breaths, and count to 10.
Then realise that Eddy was joking when he mentioned his "fee". That Griff was joining in with that joke. And that nobody here was trying to insult you or be rude.
We're generally a friendly bunch of geeks and nerds, even if our sense of humour might seem odd to outsiders.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
You are wrong! I tried to insult him after all that rude comments he had! If he was a teacher in the school of my kids - he wasn't!!! I hope he does not pass his anger and impatience on the kids...
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
|
|
|
|
|
OK, let me change that to:
"We're generally a friendly bunch of geeks and nerds, apart from that Kornfeld Eliyahu Peter, who's a nasty scary man who should be avoided at all costs!"
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Thank you. I demand accuracy!
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
|
|
|
|
|
I am a proud American and I try to instill the same values in the students. America use to be #1 in everything. Where are we now? I guess we are too busy making jokes. This is the CodeProject, not Comedy Central. Some of the users are going away from the core values of the CodeProject stand for. The jokes are not appreciated by me or my students. Mr. Deeming, thank you for your solution. I have not tried it yet, but looks like very professional. Thank you.
|
|
|
|
|
computerpublic wrote: I guess we are too busy making jokes.
Well, Eddy's from the Netherlands, Griff's from Wales, and I'm from England, so I don't think we can blame the Americans for that.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|