| Author: Rajaraman 06 Sep 2006 | Member Level: Diamond | Rating: Points: 2 |
Hi chk this answere
http://www.dotnetspider.com/qa/Question51892.aspx
Regards,
|
| Author: Padma 06 Sep 2006 | Member Level: Diamond | Rating: Points: 2 |
hi check it out
http://www.c-point.com/JavaScript/articles/file_access_with_JavaScript.htm
|
| Author: Afroz Khan 06 Sep 2006 | Member Level: Gold | Rating: Points: 2 |
hi,
This is how u can do it in c# , u can convert it to the language u want.
using System.IO; private void button2_Click(object sender, EventArgs e) { string[] s = Directory.GetFiles("D:\\Afroz\\test\\"); for (int i = 0; i<=s.Length - 1 ; i++) { listBox1.Items.Add(s[i]); } }
hope this helps.
Regards, Afroz Khan. http://khanafroz.blogspot.com
|