0

so i'm currently under a internship working on a Raspberry Pi to modulate IO signals yadayadayada.

I've noticed a few weird things when it comes to IoT. The OS is just scrapes of one and lacks lots of stuff that we devs use. Such as, the system.net.networkinformation.networkinterface namespace. Which i'd like to use to get my systems MAC-Adress. One other issue i came across was that i can't really seem to find the right access to save/load and modify files locally on the device. Any tips or tricks?

Hajpz
  • 41
  • 8

1 Answers1

0

There is a different thread about Mac addresses here that may help you:

C# - Get mac address in Universal Apps

For saving/loading files, are you using Windows.Storage.KnownFolders ? That could help you. Just arbitrarily saving files outside of the known folders structure could be a challenge.

Community
  • 1
  • 1
Pedro G. Dias
  • 3,162
  • 1
  • 18
  • 30
  • Tried the windows.storage format, it seems to work however the task that i 'm running it inside is not that helpful atm. Currently working on it tho. – Hajpz Mar 30 '16 at 06:02
  • Got it to work! Thank you so much for the Windows.Storage tip :) – Hajpz Mar 31 '16 at 08:12
  • Would you mind helping me with loading the newest file? So far i've tried to open it through listing all files, order by date and then pick the newest one, without much success :/ – Hajpz Apr 01 '16 at 07:33