void Start()
#endif
    {
        try
        {
#if !UNITY_EDITOR
            await file.CreateFile("sample.txt");
#endif
        }
        catch (Exception e)
        {
            text.text = e.Message;
        }
    }