How to create a Folder in System Drive and a File inside the Folder?

 
#import "kernel32.dll"
   int CreateFileW(string, uint, int, int, int, int, int);
   int GetFileSize(int, int);
   int ReadFile(int, uchar&[], int, int&[], int);
   int CloseHandle(int);
#import

How can I create a folder( e,g "AAAA") inside System Drive(Windows Drive)?
How to create a file inside "AAAA" folder?
How to read that file created in AAAA folder?

I was using this https://www.mql5.com/en/articles/1540 but now it does not work in build 600+
I tried but no success. Any help please.
 

For guessing the correct system drive I read the "COMMON" data path variable, which I assume to lead to the system drive.

For placing a new directory I use kernel32::CreateDirectoryW command.

For creating a file inside the directory I use kernel32::CreateFileW command.

Reason: