I need to do "dir *.* > file on an ipaq

  • Thread starter Thread starter iris
  • Start date Start date
I

iris

Hi all,

What is the simplest way to get a list of all the files in a directory,
(on an ipaq)
something equivalent to "dir *.* > file" . No need to list directories.
I have visual studio 2003 (does this mean I have .NET CF??)
 
Iris,

With VS studio Net 2003 you have as far as I know all for the compact
framework

You should be probably able to use the "directoryinfo" class (it is written
that it is for the compact framework)

http://msdn.microsoft.com/library/d...html/frlrfsystemiodirectoryinfoclasstopic.asp

You are in the right newsgroup for your question, I want to point you
however as well on the newsgroup

microsoft.public.dotnet.framework.compactframework

I hope this helps?

Cor

"iris"
 
* "iris said:
What is the simplest way to get a list of all the files in a directory,
(on an ipaq)
something equivalent to "dir *.* > file" . No need to list directories.

\\\
Dim Files() As String = System.IO.Directory.GetFiles("C:\*.*")
///
I have visual studio 2003 (does this mean I have .NET CF??)

If you are using Professional Edition or better, you'll have support for
the .NET Compact Framework inside VS.NET.
 
If you are using Professional Edition or better, you'll have support for
the .NET Compact Framework inside VS.NET.

For the OP, before you understand it wrong, there is only one Visual Studio
Net, not a better or a worse one, it is only sold with more or less add ins
and more or less extra products to use for testing or extra devolloping
purposes.

However there is not a version which gives you stand alone more
possibilities or better results.

Cor
 
For Herfried,

If you are using Professional Edition or better, you'll have support for
the .NET Compact Framework inside VS.NET.

I was curious because of your message, what version of Visual Studio Net
2003 does not support it?

Cor
 
Herfried,

Nice try, however I did not know it exactly and after your "better" I visit
the product page.

I made that "as far as I know" statement to be absolutly sure that you would
provide that link, from what I was almost sure you would do so I did not
search myself for that. (I have it now beneath).

On that is only spoken about four three versions, ent. developpers, ent.
architect and professional, while on a seperate page is the academic.

http://msdn.microsoft.com/vstudio/productinfo/features/default.aspx

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top