private void createStreamingAssetsPath()
        {
            string streamingAssetsPath = PSFileHelper.getCombinedPath(PSFileHelper.getBasePath(), STREAMING_ASSETS_PATH);

            if (!PSFileHelper.directoryExist(streamingAssetsPath))
            {
                PSFileHelper.createDirectory(streamingAssetsPath);
            }
        }
 public SaveFileAbstract()
 {
     m_streamingAssetsPath = PSFileHelper.getCombinedPath(PSFileHelper.getBasePath(), STREAMING_ASSETS_PATH);
 }