Fading Coder

One Final Commit for the Last Sprint

Handling Data I/O in C# Using Streams

In C#, input and output operations are primarily handled through the System.IO namespace. The central concept is the Stream, an abstract class that provides a generic view of a sequence of bytes. Streams involve three fundamental operations: reading, writing, and seeking. The System.IO namespace org...

Adding and Deleting Files Inside AIR's ApplicationDirectory

Adobe AIR exposes five static refreences that point to common filesystem locations: File.userDirectory File.documentsDirectory File.desktopDirectory File.applicationStorageDirectory File.applicationDirectory Content stored under File.applicationDirectory is protected by the runtime sandbox and is re...