Senseix.SenseixSession.DoFileFlagging C# (CSharp) Method

DoFileFlagging() public static method

public static DoFileFlagging ( string filePath ) : void
filePath string
return void
        public static void DoFileFlagging(string filePath)
        {
            #if UNITY_IOS
            UnityEngine.iOS.Device.SetNoBackupFlag(filePath);
            #endif
        }

Usage Example

Ejemplo n.º 1
0
 private static void LogText(string logString)
 {
     File.AppendAllText(GetLogPath(), logString);
     if (new System.IO.FileInfo(GetLogPath()).Length > deleteThreshhold)
     {
         File.Delete(GetLogPath());
     }
     SenseixSession.DoFileFlagging(GetLogPath());
 }
All Usage Examples Of Senseix.SenseixSession::DoFileFlagging