摘要:
1. 获取文件的完全路径
在头文件添加下列声明:IMPORT_C TInt CompleteWithAppPath( TDes& aFileName );TFileName filename(_L("RETROBLASTER.MBM"));CompleteWithAppPath( filename );
2. 获取当前设备显示方式(就是获取设备的色深)
使用的头文件:#include 在任何VIEW视图代码里面:TDisplayMode displayMode = iEikonEnv-ScreenDevice()-DisplayMode();
3. 获取当前系统时间(一般用于游戏开发,计算2祯之间的时间差)
TTime currentTime;currentTime.HomeTime();TInt64 currentTick = currentTime.Int64();
阅读全文