Check if the file is there

Page update date :
Page creation date :

summary

Verifies that the specified file exists.

ファイルがあるか確認する

Operating environment

Prerequisites

Supported XNA Versions
  • 2.0
Supported Platforms
  • Windows (XP SP2, Vista)
  • Xbox360
Windows Required Vertex Shader Version 1.1
Windows Required Pixel Shader Version 1.1

Operating environment

platform

How to work with the sample

Works keyboardXbox 360 controllermouse
Selecting a device to check for the existence of a file A A -

substance

The target file for which you want to check for the existence of the file

The target files for which the existence of the file is checked in this sample are the following files.

  • Font file "Font.xnb" (always present in this sample)
  • Dummy file "AAA.txt" (non-existent file)
  • Data storage file "SaveData.txt" (depending on whether you created this file with other XNA samples)

Check if there is a file for the above three files, but especially for the third file, whether the file is present or not depends on the file saved by the tips in "Saving data" and the selection of the storage device.

field

For each file, provide a flag variable that indicates whether the file exists. You can't check the saved data file until you select the save device, so you can use "bool?" and substitute null until checked.

/// <summary>
/// 保存したデータが存在するか
/// </summary>
private bool? isExistSaveDataFile = null;

/// <summary>
/// フォントファイルが存在するか
/// </summary>
private bool isExistFontFile = false;

/// <summary>
/// ダミーファイルが存在するか
/// </summary>
private bool isExistDummyFile = false;

System.IO namespace

Because you are using file-related classes, make sure that you can use the System.IO namespace beforehand. (where "using System.IO;" You can also specify the class name directly from the namespace.)

using System;
using System.Collections.Generic;
using System.IO;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Audio;
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.GamerServices;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using Microsoft.Xna.Framework.Net;
using Microsoft.Xna.Framework.Storage;

Font file path

Since the path of the font file is in the Content folder of the folder containing the executable, combine the path of the folder with the executable (obtained by the StorageContainer.TitleLocation property) and the path of the folder containing the font file using the Path.Combine method.

As for the path of the dummy file, it can be anywhere as long as there is no file.

// フォントファイルのパス
string fontFilePath =
    Path.Combine(StorageContainer.TitleLocation, @"Content\Font.xnb");

Checking for the existence of a file

To check if a file exists, use the File.Exists method.

// フォントファイルがあるか確認する
this.isExistFontFile = File.Exists(fontFilePath);

The first argument of the File.Exists method is the file path, and true is returned if the file exists. If there is no file, false is returned.

File.Exists method

Checks to see if the specified file exists.

path string The file to check.
Return Values bool true if there is a specified file; false if there is no file.

Checking for the existence of files saved in storage

For files saved to storage, you can check for the existence of the file with the File.Exists method after selecting the storage device. Combine the StorageContainer.Path property with the relative path of the file.

// ストレージコンテナを開きます
using (StorageContainer container = storageDevice.OpenContainer("XNASample"))
{
    // 保存されたファイルのパス
    string filePath = Path.Combine(container.Path, "SaveData.txt");

    // ファイルがあるか確認する
    this.isExistSaveDataFile = File.Exists(filePath);
}

All Codes

using System;
using System.Collections.Generic;
using System.IO;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Audio;
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.GamerServices;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using Microsoft.Xna.Framework.Net;
using Microsoft.Xna.Framework.Storage;

namespace ExistsFile
{
    /// <summary>
    /// ゲームメインクラス
    /// </summary>
    public class GameMain : Microsoft.Xna.Framework.Game
    {
        /// <summary>
        /// グラフィックデバイス管理クラス
        /// </summary>
        private GraphicsDeviceManager graphics = null;

        /// <summary>
        /// スプライトのバッチ化クラス
        /// </summary>
        private SpriteBatch spriteBatch = null;

        /// <summary>
        /// スプライトでテキストを描画するためのフォント
        /// </summary>
        private SpriteFont font = null;

        /// <summary>
        /// 保存したデータが存在するか
        /// </summary>
        private bool? isExistSaveDataFile = null;

        /// <summary>
        /// フォントファイルが存在するか
        /// </summary>
        private bool isExistFontFile = false;

        /// <summary>
        /// ダミーファイルが存在するか
        /// </summary>
        private bool isExistDummyFile = false;

        /// <summary>
        /// 直線のキーボード入力の状態
        /// </summary>
        private KeyboardState oldKeyboardState = new KeyboardState();

        /// <summary>
        /// 直線のゲームパッド入力の状態
        /// </summary>
        private GamePadState oldGamePadState = new GamePadState();


        /// <summary>
        /// GameMain コンストラクタ
        /// </summary>
        public GameMain()
        {
            // グラフィックデバイス管理クラスの作成
            this.graphics = new GraphicsDeviceManager(this);

            // ゲームコンテンツのルートディレクトリを設定
            this.Content.RootDirectory = "Content";

            // ゲームサービスコンポーネントを追加
            this.Components.Add(new GamerServicesComponent(this));
        }

        /// <summary>
        /// ゲームが始まる前の初期化処理を行うメソッド
        /// グラフィック以外のデータの読み込み、コンポーネントの初期化を行う
        /// </summary>
        protected override void Initialize()
        {
            // フォントファイルのパス
            string fontFilePath =
                Path.Combine(StorageContainer.TitleLocation, @"Content\Font.xnb");

            // フォントファイルがあるか確認する
            this.isExistFontFile = File.Exists(fontFilePath);

            // ダミーファイルのパス
            string dummyFilePath = Path.Combine(StorageContainer.TitleLocation, "AAA.txt");

            // ダミーファイルがあるか確認する
            this.isExistDummyFile = File.Exists(dummyFilePath);

            // コンポーネントの初期化などを行います
            base.Initialize();
        }

        /// <summary>
        /// ゲームが始まるときに一回だけ呼ばれ
        /// すべてのゲームコンテンツを読み込みます
        /// </summary>
        protected override void LoadContent()
        {
            // テクスチャーを描画するためのスプライトバッチクラスを作成します
            this.spriteBatch = new SpriteBatch(this.GraphicsDevice);

            // フォントをコンテンツパイプラインから読み込む
            this.font = this.Content.Load<SpriteFont>("Font");
        }

        /// <summary>
        /// ゲームが終了するときに一回だけ呼ばれ
        /// すべてのゲームコンテンツをアンロードします
        /// </summary>
        protected override void UnloadContent()
        {
            // TODO: ContentManager で管理されていないコンテンツを
            //       ここでアンロードしてください
        }

        /// <summary>
        /// 描画以外のデータ更新等の処理を行うメソッド
        /// 主に入力処理、衝突判定などの物理計算、オーディオの再生など
        /// </summary>
        /// <param name="gameTime">このメソッドが呼ばれたときのゲーム時間</param>
        protected override void Update(GameTime gameTime)
        {
            // キーボードの情報取得
            KeyboardState keyboardState = Keyboard.GetState();

            // ゲームパッドの情報取得
            GamePadState gamePadState = GamePad.GetState(PlayerIndex.One);

            // Xbox360 コントローラの BACK ボタンを押したときにゲームを終了させます
            if (gamePadState.Buttons.Back == ButtonState.Pressed)
            {
                this.Exit();
            }

            if ((keyboardState.IsKeyDown(Keys.A) && this.oldKeyboardState.IsKeyUp(Keys.A)) ||
                (gamePadState.Buttons.A == ButtonState.Pressed &&
                    this.oldGamePadState.Buttons.A == ButtonState.Released))
            {
                ///// A ボタンが押されたとき /////

                // ストレージデバイス選択UIを表示するための設定を行います
                Guide.BeginShowStorageDeviceSelector(this.GetStorageDevice, null);
            }

            // 入力情報を記憶
            this.oldKeyboardState = keyboardState;
            this.oldGamePadState = gamePadState;

            // 登録された GameComponent を更新する
            base.Update(gameTime);
        }

        /// <summary>
        /// ストレージデバイスを取得するために呼ばれる
        /// </summary>
        /// <param name="result">非同期処理の結果</param>
        private void GetStorageDevice(IAsyncResult result)
        {
            // 結果をもとにストレージデバイスの選択UIを終了してストレージデバイスを取得します
            StorageDevice storageDevice = Guide.EndShowStorageDeviceSelector(result);

            if (storageDevice != null && storageDevice.IsConnected)
            {
                ///// ストレージデバイスの取得に成功し、接続されている場合 /////

                // ストレージコンテナを開きます
                using (StorageContainer container = storageDevice.OpenContainer("XNASample"))
                {
                    // 保存されたファイルのパス
                    string filePath = Path.Combine(container.Path, "SaveData.txt");

                    // ファイルがあるか確認する
                    this.isExistSaveDataFile = File.Exists(filePath);
                }
            }
        }

        /// <summary>
        /// 描画処理を行うメソッド
        /// </summary>
        /// <param name="gameTime">このメソッドが呼ばれたときのゲーム時間</param>
        protected override void Draw(GameTime gameTime)
        {
            // 画面を指定した色でクリアします
            this.GraphicsDevice.Clear(Color.CornflowerBlue);

            // スプライトの描画準備
            this.spriteBatch.Begin();

            // テキスト描画
            this.spriteBatch.DrawString(this.font,
                "A : Select Storage Device.",
                new Vector2(50.0f, 50.0f), Color.White);

            // フォントファイルの存在確認
            this.spriteBatch.DrawString(this.font,
                "FontFile      : " + this.isExistFontFile,
                new Vector2(50.0f, 70.0f), Color.White);

            // ダミーファイルの存在確認
            this.spriteBatch.DrawString(this.font,
                "DummyFile     : " + this.isExistDummyFile,
                new Vector2(50.0f, 90.0f), Color.White);

            // 保存ファイルの存在確認
            string saveDataText = "SavedDateFile : ";
            if (this.isExistSaveDataFile != null)
            {
                saveDataText += this.isExistSaveDataFile;
            }
            else
            {
                saveDataText += "?";
            }
            this.spriteBatch.DrawString(this.font,
                saveDataText,
                new Vector2(50.0f, 110.0f), Color.White);

            // スプライトの一括描画
            this.spriteBatch.End();

            // 登録された DrawableGameComponent を描画する
            base.Draw(gameTime);
        }
    }
}