云 的个人资料哈侃8侃照片日志列表 工具 帮助
2007/4/12

how to check if exist memory card

 TFileName strPath;
 TDriveInfo driveInfo;
 User::LeaveIfError(CEikonEnv::Static()->FsSession().Drive(driveInfo, EDriveE));
 if( driveInfo.iType == EMediaNotPresent ) //no exist
 {
  strPath = PathInfo::PhoneMemoryRootPath(); //Default
 }
 else
 {
  strPath = PathInfo::MemoryCardRootPath();
 }