Directory.GetCurrentDirectory() is not Supported

  • Thread starter Thread starter Torrent
  • Start date Start date
T

Torrent

MessageBox.Show(Directory.GetCurrentDirectory());

This code is throwing an "System:NotSupportedExeption:NotSupportedException"
Message.

I am using the Pocket PC 2002 Emulator with Visual Studio .NET 2003
 
Windows CE does not have a concept of current directory. The method exists
for API compatibility. File path needs to be fully specified
 
Back
Top